-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (119 loc) · 4.06 KB
/
index.html
File metadata and controls
124 lines (119 loc) · 4.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/terminal.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matrix Themed Portfolio - Nandan Kumar</title>
<meta
name="description"
content="A Matrix movie-inspired portfolio with Matrix code rain and sci-fi design by Nandan Kumar."
/>
<link rel="canonical" href="https://matrix-folio.vercel.app/" />
<meta
property="og:title"
content="Matrix Themed Portfolio | Nandan Kumar"
/>
<meta
property="og:description"
content="Personal portfolio website inspired by the Matrix movie theme. Built with React and Tailwind CSS to showcase projects, skills, and experience with dynamic animations and terminal-style UI."
/>
<meta
property="og:image"
content="https://matrix-folio.vercel.app/matrixPort.png"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://matrix-folio.vercel.app/" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Matrix Themed Portfolio | Nandan Kumar"
/>
<meta
name="twitter:description"
content="A Matrix movie-inspired portfolio with Matrix code rain and sci-fi design. See creative Matrix portfolio design ideas and projects by Nandan Kumar."
/>
<meta
name="twitter:image"
content="https://matrix-folio.vercel.app/matrixPort.png"
/>
<meta name="twitter:url" content="https://matrix-folio.vercel.app/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Nandan Kumar",
"url": "https://matrix-folio.vercel.app",
"jobTitle": "Web Developer",
"description": "Matrix themed portfolio, inspired by the Matrix movie.",
"sameAs": [
"https://github.com/NandanKumar07",
"https://www.linkedin.com/in/nandan-kumar07/",
"https://x.com/Nandan_Kr07"
],
"knowsAbout": [
"Web Development",
"React",
"Node.js",
"Machine Learning",
"Data Science"
],
"worksFor": {
"@type": "Organization",
"name": "Freelance / Open Source"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Matrix Themed Portfolio",
"url": "https://matrix-folio.vercel.app",
"publisher": {
"@type": "Person",
"name": "Nandan Kumar"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://matrix-folio.vercel.app/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Portfolio Projects",
"itemListElement": [
{
"@type": "CreativeWork",
"position": 1,
"name": "Bank Churn Prediction",
"description": "Machine learning project predicting bank customer churn.",
"url": "https://matrix-folio.vercel.app/projects#bankchurn"
},
{
"@type": "CreativeWork",
"position": 2,
"name": "Breast Cancer Detection",
"description": "AI project for early breast cancer classification.",
"url": "https://matrix-folio.vercel.app/projects#breastcancer"
},
{
"@type": "CreativeWork",
"position": 3,
"name": "Matrix Themed Portfolio",
"description": "Personal portfolio with Matrix code rain and sci-fi design.",
"url": "https://matrix-folio.vercel.app"
}
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>