-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 2.66 KB
/
index.html
File metadata and controls
79 lines (75 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Basic Metadata -->
<title>Project Dagtaan: Color the Dreams of Children</title>
<meta
name="description"
content="Empowering the children of Kalipay Negrense Foundation through creative and technological outreach programs."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://project-dagtaan.vercel.app/" />
<meta
property="og:title"
content="Project Dagtaan: Color the Dreams of Children"
/>
<meta
property="og:description"
content="Led by Arielle Jimera, this initiative empowers the children of Kalipay Negrense Foundation through innovative outreach programs that foster creativity and technological growth."
/>
<meta property="og:image" content="/fb-thumbnail.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://project-dagtaan.vercel.app/"
/>
<meta
property="twitter:title"
content="Project Dagtaan: Color the Dreams of Children"
/>
<meta
property="twitter:description"
content="Empowering the children of Kalipay Negrense Foundation through creative and technological outreach programs."
/>
<meta property="twitter:image" content="/thumbnail.png" />
<!-- Geist Font -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
/* Temporary font replacement until Geist is loaded */
body {
font-family: "Inter", sans-serif;
}
</style>
<script>
// Load Geist font using JavaScript
(function () {
const geistSans = new FontFace(
"Geist Sans",
"url(https://cdn.jsdelivr.net/npm/geist-font@latest/dist/fonts/geist-sans/Geist-Regular.woff2)"
);
const geistMono = new FontFace(
"Geist Mono",
"url(https://cdn.jsdelivr.net/npm/geist-font@latest/dist/fonts/geist-mono/GeistMono-Regular.woff2)"
);
Promise.all([geistSans.load(), geistMono.load()]).then((fonts) => {
fonts.forEach((font) => {
document.fonts.add(font);
});
document.documentElement.classList.add("geist-loaded");
});
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>