forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (105 loc) · 3.49 KB
/
index.html
File metadata and controls
106 lines (105 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vritant | Portfolio Guidelines (Dark)</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Lato', sans-serif;
margin: 0;
padding: 20px;
transition: background 0.3s ease, color 0.3s ease;
}
body.dark-theme {
background: radial-gradient(circle at top left, #020617 0%, #020617 40%, #020617 100%);
color: #F9FAFB;
}
body.light-theme {
background: radial-gradient(circle at top left, #ffffff 0%, #f9fafb 40%, #f3f4f6 100%);
color: #111827;
}
h1, h2, h3, .brand-font {
font-family: 'Montserrat', sans-serif;
}
.slide-card {
border-radius: 24px;
box-shadow: 0 18px 45px -18px rgba(15, 23, 42, 0.9);
overflow: hidden;
transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
body.dark-theme .slide-card {
background: #050816;
border: 1px solid rgba(148, 163, 184, 0.22);
box-shadow: 0 18px 45px -18px rgba(15, 23, 42, 0.9);
}
body.light-theme .slide-card {
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.1);
}
.featured-bmc-card {
position: relative;
overflow: hidden;
border-radius: 24px;
}
body.dark-theme .featured-bmc-card {
background: radial-gradient(circle at top left, #020617, #020617);
}
body.light-theme .featured-bmc-card {
background: radial-gradient(circle at top left, #ffffff, #f9fafb);
}
.gradient-accent {
background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}
.pill {
border: 1.5px solid #F0F0F0;
border-radius: 999px;
padding: 4px 16px;
font-size: 14px;
font-weight: 600;
transition: all 0.2s ease;
}
.pill:hover {
background: #F0F0F0;
color: #0A0A0A;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
}
body.dark-theme ::-webkit-scrollbar-track {
background: #0A0A0A;
}
body.light-theme ::-webkit-scrollbar-track {
background: #f3f4f6;
}
body.dark-theme ::-webkit-scrollbar-thumb {
background: #333333;
border-radius: 10px;
}
body.light-theme ::-webkit-scrollbar-thumb {
background: #9ca3af;
border-radius: 10px;
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>