-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.8 KB
/
Copy pathindex.html
File metadata and controls
30 lines (28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Metadata -->
<title>Birthday Buddy - List View Display | React Fundamental Project</title>
<meta name="description" content="Birthday Buddy is a beginner-friendly React app that displays a list of people and their birthdays. View the list and clear it with one click. Built with React, Vite, and CSS for learning components, props, state, and styling." />
<meta name="author" content="Arnob Mahmud (https://www.arnobmahmud.com, contact@arnobmahmud.com)" />
<meta name="keywords" content="Birthday Buddy, React, list view, birthdays, React fundamentals, Vite, components, props, state, JavaScript, frontend, learning project" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://listview-display.vercel.app/" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Birthday Buddy - List View Display | React Fundamental Project" />
<meta property="og:description" content="A beginner-friendly React app showing a list of people and their birthdays. Learn React components, props, state, and styling." />
<meta property="og:url" content="https://listview-display.vercel.app/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Birthday Buddy" />
</head>
<body>
<!-- React mounts here: main.jsx uses createRoot(document.getElementById('root')) -->
<div id="root"></div>
<!-- type="module" enables ES modules; Vite serves and transforms main.jsx -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>