-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) Β· 1.88 KB
/
index.html
File metadata and controls
53 lines (46 loc) Β· 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- π Title -->
<title>Prince | Creative Developer Portfolio</title>
<!-- πΌοΈ Favicon -->
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="apple-touch-icon" href="/assets/favicon.png" />
<!-- π SEO Meta -->
<meta name="author" content="Prince Sarkar" />
<meta
name="description"
content="Welcome to Prince's creative developer portfolio β a showcase of React projects, design tools, and modern web innovations."
/>
<meta
name="keywords"
content="Prince, Developer, Portfolio, React, Tailwind, Web Developer, Designer, Frontend, UI UX, VS Code"
/>
<!-- π Open Graph (for social sharing) -->
<meta property="og:title" content="Prince | Developer Portfolio" />
<meta
property="og:description"
content="Modern, animated portfolio of Prince β frontend developer and creative coder."
/>
<meta property="og:image" content="/assets/banner.png" />
<meta property="og:url" content="https://your-domain.com/" />
<meta property="og:type" content="website" />
<!-- π± Theme Colors -->
<meta name="theme-color" content="#6366F1" />
<meta name="msapplication-TileColor" content="#ffffff" />
<!-- π PWA Capability (optional) -->
<link rel="manifest" href="/manifest.json" />
<!-- β
Fonts (optional) -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap"
rel="stylesheet"
/>
</head>
<body class="bg-white dark:bg-gray-900 text-black dark:text-white transition-colors duration-300">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>