hotfix: local logo

This commit is contained in:
austnv
2026-05-24 01:18:04 +03:00
parent b90949e5f4
commit 5edd56a31f
5 changed files with 10 additions and 4 deletions
+1 -2
View File
@@ -2,10 +2,9 @@
<html lang=""> <html lang="">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="//sub.uvpn.shop/static/turbo.png"> <link rel="icon" href="/images/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>uVPN</title> <title>uVPN</title>
<link href="/src/assets/styles.css" rel="stylesheet">
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
+1 -1
View File
@@ -2,7 +2,7 @@
<footer id="footer" class="border-t border-gray-800 px-6 py-12 md:px-12"> <footer id="footer" class="border-t border-gray-800 px-6 py-12 md:px-12">
<div class="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-center gap-3"> <div class="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-center gap-3">
<div class="flex items-center gap-3"> <div class="flex items-center gap-3">
<img src="/logo.png" alt="uVPN logo" class="size-8" /> <img src="/images/logo.png" alt="uVPN logo" class="size-8" />
<span class="text-lg font-bold">uVPN</span> <span class="text-lg font-bold">uVPN</span>
</div> </div>
<div class="flex gap-6 text-gray-400 text-sm"> <div class="flex gap-6 text-gray-400 text-sm">
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<header class="flex items-center justify-between px-6 py-4 md:px-12 border-b border-gray-800 sticky top-0 bg-gray-900/80 backdrop-blur-xs z-50"> <header class="flex items-center justify-between px-6 py-4 md:px-12 border-b border-gray-800 sticky top-0 bg-gray-900/80 backdrop-blur-xs z-50">
<div class="flex items-center gap-3"> <div class="flex items-center gap-3">
<img src="/logo.png" alt="uVPN logo" class="size-8" /> <img src="/images/logo.png" alt="uVPN logo" class="size-8" />
<span class="text-xl font-bold tracking-tight">uVPN</span> <span class="text-xl font-bold tracking-tight">uVPN</span>
</div> </div>
+1
View File
@@ -1,4 +1,5 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import './assets/styles.css'
createApp(App).mount('#app') createApp(App).mount('#app')
+6
View File
@@ -0,0 +1,6 @@
export default {
darkMode: 'media',
content: ['./index.html', './src/**/*.{vue,js}'],
theme: { extend: {} },
plugins: [],
}