-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (94 loc) · 3.18 KB
/
index.html
File metadata and controls
111 lines (94 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:image" content="pic/DP.jpg" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1,width=device-width,user-scalable=no">
<meta name="theme-color" content="#121212">
<meta charset="UTF-8">
<title>Sudeep | Portal</title>
<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=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/website.css">
<style>
/* Homepage specific overrides/additions */
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
width: 90%;
max-width: 1000px;
margin: 2rem auto;
}
.card {
background-color: var(--surface-color);
border-radius: 12px;
padding: 2rem;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: flex;
flex-direction: column;
align-items: flex-start;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
border-color: var(--accent-color);
}
.card h2 {
color: #fff;
margin-top: 0;
font-size: 1.5rem;
}
.card p {
color: var(--text-secondary);
flex-grow: 1;
}
.card-link {
margin-top: 1.5rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
header {
margin-top: 4rem;
}
</style>
</head>
<body>
<header>
<h1>Welcome <img src="pic/DP.jpg" alt="Sudeep" style="width: 80px; height: 80px; margin-left: auto;"></h1>
<div class="name-divider"></div>
<h3>Software Engineer | Creator</h3>
<div class="name-divider"></div>
</header>
<div class="grid-container">
<!-- Card: About / CV -->
<a href="about.html" class="card" style="text-decoration: none;">
<h2>About Me & CV</h2>
<p>Read about my experience, view my resume, and see my background.</p>
<span class="card-link">View Profile →</span>
</a>
<!-- Card: Pomodoro -->
<a href="pomodoro/" class="card" style="text-decoration: none;">
<h2>Pomodoro Timer</h2>
<p>A simple, focus-enhancing timer with configurable sessions and breaks.</p>
<span class="card-link">Start Focus →</span>
</a>
<!-- Card: Valentine -->
<a href="valentine/" class="card" style="text-decoration: none;">
<h2>Valentine Proposal</h2>
<p>A special interactive proposal.</p>
<span class="card-link">View →</span>
</a>
<!-- Card: Future Projects -->
<div class="card" style="opacity: 0.7; cursor: default;">
<h2>Future Projects</h2>
<p>More tools and experiments coming soon. Stay tuned!</p>
<span class="card-link" style="color: var(--text-secondary);">Coming Soon</span>
</div>
</div>
</body>
</html>