-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (89 loc) · 2.89 KB
/
index.html
File metadata and controls
102 lines (89 loc) · 2.89 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Creators AI</title>
<!-- PWA Meta Tags -->
<meta name="description" content="Connect with spiritual guides and receive wisdom through AI-powered conversations">
<meta name="theme-color" content="#000000">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="CreatorsAI">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/browserconfig.xml">
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json">
<style>
/* Prevent mobile zoom on input focus */
@media screen and (max-width: 768px) {
input,
textarea,
select,
button {
font-size: 16px !important;
}
}
</style>
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="152x152" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="192x192" href="/favicon.ico">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.ico">
<style>
/* Simple loader styles */
#loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #000;
color: #fff;
font-size: 1.5rem;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid #fff;
border-top: 4px solid transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
<!-- Meta Pixel Code -->
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return; n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
n.queue = []; t = b.createElement(e); t.async = !0;
t.src = v; s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '749222448006827');
fbq('track', 'PageView');
</script>
</head>
<body>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=749222448006827&ev=PageView&noscript=1" /></noscript>
<!-- End Meta Pixel Code -->
<div id="root">
<!-- Loader shown until React takes over -->
<div id="loader">
<div class="spinner"></div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>