-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (104 loc) · 5.02 KB
/
index.html
File metadata and controls
120 lines (104 loc) · 5.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="theme-color" content="#4f46e5" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="AlumConnect" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- PWA Meta Tags -->
<link rel="manifest" href="/manifest.json" />
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/icons/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/icons/icon-144x144.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/icons/icon-128x128.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/icons/icon-128x128.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/icons/icon-96x96.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/icons/icon-72x72.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icon-72x72.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icon-72x72.png" />
<!-- Microsoft Tiles -->
<meta name="msapplication-TileColor" content="#4f46e5" />
<meta name="msapplication-TileImage" content="/icons/icon-144x144.png" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- SEO Meta Tags -->
<meta name="description" content="Connect with alumni, find mentors, and accelerate your career journey with AlumConnect - the social platform for students and alumni." />
<meta name="keywords" content="alumni, students, mentorship, networking, career, education, jobs" />
<meta name="author" content="AlumConnect" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="AlumConnect - Alumni Student Network" />
<meta property="og:description" content="Connect with alumni, find mentors, and accelerate your career journey" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://alumconnect.netlify.app" />
<meta property="og:image" content="/icons/icon-512x512.png" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AlumConnect - Alumni Student Network" />
<meta name="twitter:description" content="Connect with alumni, find mentors, and accelerate your career journey" />
<meta name="twitter:image" content="/icons/icon-512x512.png" />
<title>AlumConnect - Empowering Connections. Enabling Futures.</title>
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Preload critical resources -->
<link rel="preload" href="/icons/icon-192x192.png" as="image" />
<!-- Safe area insets for notched devices -->
<style>
:root {
--safe-area-inset-top: env(safe-area-inset-top);
--safe-area-inset-right: env(safe-area-inset-right);
--safe-area-inset-bottom: env(safe-area-inset-bottom);
--safe-area-inset-left: env(safe-area-inset-left);
}
body {
padding-top: var(--safe-area-inset-top);
padding-right: var(--safe-area-inset-right);
padding-bottom: var(--safe-area-inset-bottom);
padding-left: var(--safe-area-inset-left);
}
/* Prevent zoom on input focus on iOS */
input, select, textarea {
font-size: 16px !important;
}
/* Smooth scrolling for mobile */
html {
-webkit-overflow-scrolling: touch;
}
/* Hide scrollbars on mobile */
@media (max-width: 768px) {
::-webkit-scrollbar {
display: none;
}
* {
-ms-overflow-style: none;
scrollbar-width: none;
}
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- PWA Service Worker Registration -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then((registration) => {
console.log('SW registered: ', registration);
})
.catch((registrationError) => {
console.log('SW registration failed: ', registrationError);
});
});
}
</script>
</body>
</html>