-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (63 loc) · 2.34 KB
/
index.html
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
<!doctype html>
<html class="h-full bg-gray-100" lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <title>Spending Tracker</title>-->
<!-- Primary Meta Tags -->
<title>
Personal Salary-to-Salary Spending Tracker | Manage Your Finances
</title>
<meta
name="title"
content="Personal Salary-to-Salary Spending Tracker | Manage Your Finances"
/>
<meta
name="description"
content="Take control of your finances with our salary-to-salary spending tracker. Easily track your income and expenses from one payday to the next, helping you stay on top of your financial goals."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://spending-tracker-tau.vercel.app/"
/>
<meta
property="og:title"
content="Personal Salary-to-Salary Spending Tracker | Manage Your Finances"
/>
<meta
property="og:description"
content="Take control of your finances with our salary-to-salary spending tracker. Easily track your income and expenses from one payday to the next, helping you stay on top of your financial goals."
/>
<meta
property="og:image"
content="https://spending-tracker-tau.vercel.app/img.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://spending-tracker-tau.vercel.app/"
/>
<meta
property="twitter:title"
content="Personal Salary-to-Salary Spending Tracker | Manage Your Finances"
/>
<meta
property="twitter:description"
content="Take control of your finances with our salary-to-salary spending tracker. Easily track your income and expenses from one payday to the next, helping you stay on top of your financial goals."
/>
<meta
property="twitter:image"
content="https://spending-tracker-tau.vercel.app/img.png"
/>
<!-- Meta Tags Generated with https://metatags.io -->
</head>
<body class="h-full">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>