-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.8 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.8 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quickie Notes - Modern Note-Taking App</title>
<meta name="description" content="A modern, lightweight note-taking application built with React 19 and Firebase. Quickly jot down thoughts, create to-do lists, and organize ideas with real-time synchronization." />
<meta name="keywords" content="notes, note taking, react, firebase, cloud notes, productivity" />
<meta name="author" content="Soumik Das" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://quickie-notes.vercel.app/" />
<meta property="og:title" content="Quickie Notes - Modern Note-Taking App" />
<meta property="og:description" content="A modern, lightweight note-taking application. Quickly jot down thoughts, create to-do lists, and organize ideas with real-time synchronization." />
<meta property="og:image" content="/icon.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://quickie-notes.vercel.app/" />
<meta property="twitter:title" content="Quickie Notes - Modern Note-Taking App" />
<meta property="twitter:description" content="A modern, lightweight note-taking application. Quickly jot down thoughts, create to-do lists, and organize ideas with real-time synchronization." />
<meta property="twitter:image" content="/icon.png" />
<!-- Theme Color for browsers -->
<meta name="theme-color" content="#3b82f6" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>