-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (68 loc) · 2.43 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
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Budget App - Your Go-To Tool for Managing Finances</title>
<!-- Google Search Console Verification -->
<meta
name="google-site-verification"
content="_t_voY5kuMVEL4CtmBOVDuZ0j6_MRBKwBxG5mDwkK90"
/>
<!-- Meta Descriptions -->
<meta
name="description"
content="Home Budget App: Your go-to solution for managing finances, tracking expenses, and planning budgets effectively."
/>
<link rel="canonical" href="https://homebudget-react.netlify.app/" />
<meta name="theme-color" content="#000000" />
<meta name="robots" content="index, follow" />
<meta name="author" content="AbdulAhad" />
<!-- Open Graph Metadata -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Home Budget App - Your Go-To Tool for Managing Finances"
/>
<meta
property="og:description"
content="Home Budget App: Your go-to solution for managing finances, tracking expenses, and planning budgets effectively."
/>
<meta
property="og:image"
content="https://homebudget-react.netlify.app/logo.png"
/>
<meta property="og:url" content="https://homebudget-react.netlify.app/" />
<!-- Twitter Card Metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Home Budget App - Your Go-To Tool for Managing Finances"
/>
<meta
name="twitter:description"
content="Home Budget App: Your go-to solution for managing finances, tracking expenses, and planning budgets effectively."
/>
<meta
name="twitter:image"
content="https://homebudget-react.netlify.app/logo.png"
/>
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/logo.svg" />
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "HomeBudget",
"url": "https://homebudget-react.netlify.app",
"logo": "https://homebudget-react.netlify.app/logo.svg"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>