-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathapp.html
More file actions
95 lines (88 loc) · 3.83 KB
/
Copy pathapp.html
File metadata and controls
95 lines (88 loc) · 3.83 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en" style="background: #120F17">
<head>
<!-- Basic Meta Tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#120F17" />
<meta name="author" content="David Haz" />
<meta
name="description"
content="An open source collection of high quality, animated, interactive & fully customizable Svelte components for building stunning, memorable user interfaces."
/>
<meta
name="keywords"
content="Svelte, SvelteKit, Svelte 5, Svelte tutorials, Svelte components, Svelte UI library, animated components, frontend development, JavaScript, TypeScript, Tailwind, UI library, component library, Svelte animations"
/>
<!-- 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=Press+Start+2P&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap" rel="stylesheet" />
<!-- Icons -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<meta name="apple-mobile-web-app-title" content="Svelte Bits" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Open Graph (OG) - Facebook, LinkedIn, etc. -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Svelte Bits" />
<meta
property="og:description"
content="An open source collection of high quality, animated, interactive & fully customizable Svelte components for building stunning, memorable user interfaces."
/>
<meta property="og:image" content="https://sveltebits.xyz/og-pic.png" />
<meta
property="og:image:alt"
content="The Svelte Bits landing page design, showcasing the logo and a subtitle."
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:url" content="https://sveltebits.xyz" />
<meta property="og:site_name" content="Svelte Bits" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Svelte Bits" />
<meta
name="twitter:description"
content="An open source collection of high quality, animated, interactive & fully customizable Svelte components for building stunning, memorable user interfaces."
/>
<meta name="twitter:image" content="https://sveltebits.xyz/og-pic.png" />
<meta
name="twitter:image:alt"
content="The Svelte Bits landing page design, showcasing the logo and a subtitle."
/>
<meta name="twitter:creator" content="@davidhdev" />
<!-- Canonical & Robots -->
<link rel="canonical" href="https://sveltebits.xyz" />
<meta name="robots" content="index, follow" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Svelte Bits",
"url": "https://sveltebits.xyz",
"description": "An open source collection of high quality, animated, interactive & fully customizable Svelte components for building stunning, memorable user interfaces.",
"image": "https://sveltebits.xyz/og-pic.png",
"author": {
"@type": "Person",
"name": "David Haz",
"url": "https://x.com/davidhdev"
},
"publisher": {
"@type": "Person",
"name": "David Haz",
"url": "https://davidhaz.com"
}
}
</script>
<title>Svelte Bits - Animated UI Components For Svelte</title>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div>%sveltekit.body%</div>
</body>
</html>