-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 2.39 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#09090b" />
<meta name="color-scheme" content="dark" />
<title>Password Generator | Secure & Offline</title>
<!-- PWA Icons -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<!-- Primary Meta Tags -->
<meta name="description" content="Generate strong, secure passwords instantly. Works completely offline - your passwords never leave your device." />
<!-- Apple PWA Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Passwords" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://passwords.roga.dev/" />
<meta property="og:title" content="Password Generator | Secure & Offline" />
<meta property="og:description" content="Generate strong, secure passwords instantly. Works completely offline - your passwords never leave your device." />
<meta property="og:image" content="https://passwords.roga.dev/images/og-image.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://passwords.roga.dev/" />
<meta property="twitter:title" content="Password Generator | Secure & Offline" />
<meta property="twitter:description" content="Generate strong, secure passwords instantly. Works completely offline - your passwords never leave your device." />
<meta property="twitter:image" content="https://passwords.roga.dev/images/og-image.jpg" />
<!-- Self-hosted fonts: Geist for UI, JetBrains Mono for passwords -->
<link rel="preload" href="/fonts/geist-latin-wght-normal.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/jetbrains-mono-latin-wght-normal.woff2" as="font" type="font/woff2" crossorigin>
</head>
<body class="bg-zinc-950 text-zinc-100 antialiased">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>