-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.html
53 lines (47 loc) · 1.9 KB
/
app.html
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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
<link rel="icon" type="%sveltekit.assets%/image/svg+xml" href="/favicon.svg" />
<!-- Canonical URL -->
<link rel="canonical" href="https://sveltefirebase.com/" />
<!-- Primary Meta Tags -->
<title>Build Purrfect Websites with Svelte and Firebase.</title>
<meta name="title" content="Build Purrfect Websites with Svelte and Firebase." />
<meta
name="description"
content="Learn to build Purrfect websites with SvelteKit and Firebase, the crown of backends."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sveltefirebase.com/" />
<meta property="og:title" content="Build Purrfect Websites with Svelte and Firebase." />
<meta
property="og:description"
content="Learn to build Purrfect websites with SvelteKit and Firebase, the crown of backends."
/>
<meta property="og:image" content="https://sveltefirebase.com/cover.jpg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@CodingCatDev" />
<meta name="twitter:creator" content="@CodingCatDev" />
<meta property="twitter:title" content="Build Purrfect Websites with Svelte and Firebase." />
<meta
property="twitter:description"
content="Learn to build Purrfect websites with SvelteKit and Firebase, the crown of backends."
/>
<meta property="twitter:image" content="https://sveltefirebase.com/cover.jpg" />
<link
rel="preload"
href="%sveltekit.assets%/fonts/Nunito-VariableFont_wght.ttf"
as="font"
type="font/ttf"
crossorigin
/>
</head>
<body data-sveltekit-preload-data="hover" data-theme="custom-theme">
<div style="display: contents" class="h-full overflow-hidden">%sveltekit.body%</div>
</body>
</html>