mirror of
https://github.com/remnawave/frontend.git
synced 2026-05-13 20:26:47 +00:00
- Changed link tags in index.html to use dns-prefetch and preconnect for improved font loading. - Removed obsolete error page components and styles from the project. - Updated package.json version to 0.1.3. - Added a refresh button in the dashboard header for better user experience. - Adjusted ESLint plugin versions in package-lock.json for consistency. - Cleaned up imports in various components for better maintainability. Co-authored-by: Ivan <84693047+exact01@users.noreply.github.com>
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png" />
|
|
<link rel="icon" href="/logo.svg" type="image/svg+xml" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
|
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
|
|
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.gstatic.com" />
|
|
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<script src="https://remnawave.github.io/xray-monaco-editor/wasm_exec.js"></script>
|
|
|
|
<meta name="color-scheme" content="dark only" />
|
|
<meta name="theme-color" content="#161B23" />
|
|
|
|
<meta
|
|
name="viewport"
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, user-scalable=no"
|
|
/>
|
|
<meta name="description" content="Remnawave Dashboard" />
|
|
<title>Remnawave</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|