-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (71 loc) · 3.86 KB
/
index.html
File metadata and controls
80 lines (71 loc) · 3.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en" prefix="og: https://ogp.me/ns#" data-theme="dark">
<head>
<title>Personal Website | f1sh.v.recipes</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<meta name="title" content="Personal Website | f1sh.v.recipes" />
<meta
name="description"
content="Personal portfolio and creative space of Moli, showcasing projects, photography, and digital experiences."
/>
<meta
name="keywords"
content="moli, personal website, portfolio, photography, developer, creative, lostfish, digital portfolio"
/>
<meta name="author" content="Moli" />
<!-- Canonical URL -->
<link rel="canonical" href="https://f1sh.v.recipes" />
<link rel="alternate" type="application/rss+xml" title="f1sh.v.recipes blog RSS" href="/rss.xml" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/favicon.png" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://f1sh.v.recipes" />
<meta property="og:title" content="Personal Website | f1sh.v.recipes" />
<meta
property="og:description"
content="Personal portfolio and creative space of Moli, showcasing projects, photography, and digital experiences."
/>
<meta property="og:image" content="/screenshot.png" />
<meta property="og:site_name" content="f1sh.v.recipes" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://f1sh.v.recipes" />
<meta name="twitter:title" content="Personal Website | f1sh.v.recipes" />
<meta
name="twitter:description"
content="Personal portfolio and creative space of Moli, showcasing projects, photography, and digital experiences."
/>
<meta name="twitter:image" content="/screenshot.png" />
<!-- Robots -->
<meta name="robots" content="index, follow" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Karla:wght@300;400;500;600&display=swap" rel="stylesheet" />
<!-- Accessibility -->
<meta name="theme-color" content="#11111b" />
<meta name="darkreader-lock" />
<script>
(function() {
var t = localStorage.getItem('theme') || 'dark';
document.documentElement.setAttribute('data-theme', t);
document.documentElement.style.colorScheme = t;
var colors = { dark: '#11111b', light: '#dce0e8' };
document.querySelector('meta[name="theme-color"]').setAttribute('content', colors[t]);
})();
</script>
</head>
<body
class="overflow-x-hidden bg-catppuccin-crust text-catppuccin-text font-mono antialiased"
>
<a href="#main-content" class="sr-only focus:not-sr-only focus:fixed focus:top-2 focus:left-2 focus:z-[99999] focus:px-3 focus:py-1.5 focus:bg-catppuccin-base focus:text-catppuccin-mauve focus:rounded focus:border focus:border-catppuccin-mauve focus:text-sm">Skip to content</a>
<div id="app" role="main"></div>
<script type="module" src="/src/main.js" defer></script>
</body>
</html>