-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (55 loc) · 2.14 KB
/
index.html
File metadata and controls
62 lines (55 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<title>TimeTracker Pro</title>
<!-- Favicons generated by RealFaviconGenerator -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="TimeTrackerPro" />
<link rel="manifest" href="/site.webmanifest" />
<!-- PWA Meta Tags -->
<meta
name="description"
content="Professional time tracking for freelancers and consultants. Track hours, manage projects, and generate invoices."
/>
<meta name="theme-color" content="#3b82f6" />
<!-- iOS Specific Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- Microsoft Specific Meta Tags -->
<meta name="msapplication-TileColor" content="#3b82f6" />
<meta name="msapplication-TileImage" content="/icons/icon-144x144.png" />
<!-- Additional PWA Tags -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="TimeTracker Pro" />
<!-- Content Security Policy -->
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
connect-src 'self' https://*.supabase.co wss://*.supabase.co https://generativelanguage.googleapis.com;
font-src 'self' data:;
img-src 'self' data: blob:;
frame-src 'none';
object-src 'none';
base-uri 'self';
form-action 'self';
"
/>
<link rel="stylesheet" href="/print.css" media="print" />
<link rel="stylesheet" href="/pwa.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>