-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (88 loc) · 3.34 KB
/
index.html
File metadata and controls
93 lines (88 loc) · 3.34 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/focal-icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#111827" />
<!-- Primary Meta Tags -->
<title>Focal: AI-Powered Expense Tracker & Receipt Scanner</title>
<meta
name="title"
content="Focal: AI-Powered Expense Tracker & Receipt Scanner"
/>
<meta
name="description"
content="Modern expense tracking PWA with AI-powered receipt scanning. Track expenses, scan receipts with Google Gemini AI, and manage your finances securely on Cloudflare's edge network."
/>
<meta
name="keywords"
content="expense tracker, receipt scanner, AI OCR, finance app, PWA, budget tracking, Gemini AI, expense management"
/>
<meta name="author" content="Creative Geek" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://focal.creativegeek.net/" />
<meta
property="og:title"
content="Focal: AI-Powered Expense Tracker & Receipt Scanner"
/>
<meta
property="og:description"
content="Modern expense tracking PWA with AI-powered receipt scanning. Track expenses, scan receipts with Google Gemini AI, and manage your finances securely."
/>
<meta
property="og:image"
content="https://focal.creativegeek.net/images/dashboard.png"
/>
<meta
property="og:image:alt"
content="Focal Dashboard - Expense tracking with AI receipt scanning"
/>
<meta property="og:site_name" content="Focal Finance Tracker" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://focal.creativegeek.net/" />
<meta
property="twitter:title"
content="Focal: AI-Powered Expense Tracker & Receipt Scanner"
/>
<meta
property="twitter:description"
content="Modern expense tracking PWA with AI-powered receipt scanning. Track expenses, scan receipts with Google Gemini AI, and manage your finances securely."
/>
<meta
property="twitter:image"
content="https://focal.creativegeek.net/images/dashboard.png"
/>
<meta
property="twitter:image:alt"
content="Focal Dashboard - Expense tracking with AI receipt scanning"
/>
<!-- PWA -->
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-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="Focal" />
<!-- Fonts -->
<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"
/>
<link
href="https://api.fontshare.com/v2/css?f[]=cal-sans@600&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>