-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
258 lines (237 loc) · 12.3 KB
/
about.html
File metadata and controls
258 lines (237 loc) · 12.3 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!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">
<meta name="google-site-verification" content="j5ZmpRp6-ZeLuTr-M8DbzuULJBChS9HBV_7bDVQt9u4" />
<title>About Me</title>
<link rel="icon" type="image/x-icon" href="./res/icons/Favicon.png" />
<link rel="stylesheet" href="./style/style.css">
<!-- Scripting -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://kit.fontawesome.com/df18b2a205.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
<script src="https://unpkg.com/lenis@1.0.45/dist/lenis.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const lenis = new Lenis({
duration: 1.2,
easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),
direction: 'vertical',
gestureDirection: 'vertical',
smooth: true,
mouseMultiplier: 1,
smoothTouch: false,
touchMultiplier: 2,
});
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
});
</script>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
</head>
<body>
<div class="wrapper">
<div
class="hero-red-bg mx-0 mt-0 md:mx-[15px] md:mt-6 mb-12 pt-6 px-6 md:px-12 pb-6 relative overflow-hidden rounded-none md:rounded-[20px]">
<img src="./res/images/hero_pattern.png"
class="absolute inset-0 w-full h-full object-cover opacity-50 mix-blend-overlay pointer-events-none z-0"
alt="Pattern" />
<nav class="relative z-50 flex flex-wrap items-center justify-between mb-0 glass-nav py-4 md:py-5 w-full">
<!-- Desktop Nav -->
<div class="hidden md:flex items-center space-x-8 pl-4">
<a href="index.html"
class="text-white text-xs md:text-sm font-bold tracking-widest uppercase transition-colors group">
<div class="relative h-[16px] overflow-hidden">
<span class="block transition-transform duration-300 group-hover:-translate-y-full">Work</span>
<span
class="block absolute top-0 left-0 translate-y-full transition-transform duration-300 group-hover:translate-y-0">Work</span>
</div>
</a>
<a href="about.html"
class="text-white text-xs md:text-sm font-bold tracking-widest uppercase transition-colors group">
<div class="relative h-[16px] overflow-hidden">
<span class="block transition-transform duration-300 group-hover:-translate-y-full">About</span>
<span
class="block absolute top-0 left-0 translate-y-full transition-transform duration-300 group-hover:translate-y-0">About</span>
</div>
</a>
<a href="products.html"
class="text-white text-xs md:text-sm font-bold tracking-widest uppercase transition-colors group">
<div class="relative h-[16px] overflow-hidden">
<span class="block transition-transform duration-300 group-hover:-translate-y-full">Product</span>
<span
class="block absolute top-0 left-0 translate-y-full transition-transform duration-300 group-hover:translate-y-0">Product</span>
</div>
</a>
</div>
<!-- Desktop Logo (Centered) -->
<div class="hidden md:flex absolute left-1/2 transform -translate-x-1/2">
<a href="index.html">
<img src="./res/icons/logo.svg" alt="Logo"
class="h-8 w-auto brightness-0 invert opacity-90 hover:opacity-100 transition-opacity" />
</a>
</div>
<!-- Mobile Header -->
<div class="md:hidden flex items-center justify-between w-full px-4">
<a href="index.html" class="flex items-center">
<img src="./res/icons/logo.svg" alt="Logo"
class="h-6 w-auto brightness-0 invert opacity-90 hover:opacity-100 transition-opacity" />
</a>
<button class="outline-none mobile-menu-button text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
<!-- Desktop Social Icons -->
<div class="hidden md:flex items-center space-x-6 md:pr-4 text-white">
<a href="https://www.behance.net/uxrishu" target="_blank" class="transition-colors"><i
class="fa-brands fa-behance text-xl"></i></a>
<a href="https://www.linkedin.com/in/uxrishu/" target="_blank" class=" transition-colors"><i
class="fa-brands fa-linkedin-in text-xl"></i></a>
<a href="https://github.com/uxrishu" target="_blank" class="transition-colors"><i
class="fa-brands fa-github text-xl"></i></a>
</div>
<!-- Mobile Menu Dropdown -->
<div class="mobile-menu hidden w-full md:hidden mt-1 border-t border-white/20">
<div class="flex flex-col items-start pt-6 pb-2 pl-4 space-y-3">
<a href="index.html" class="text-white text-sm font-bold tracking-widest uppercase">Work</a>
<a href="about.html" class="text-white text-sm font-bold tracking-widest uppercase">About</a>
<a href="products.html" class="text-white text-sm font-bold tracking-widest uppercase">Product</a>
<div class="flex items-center space-x-6 pt-2 text-white pl-1">
<a href="https://www.behance.net/uxrishu" target="_blank"><i class="fa-brands fa-behance text-xl"></i></a>
<a href="https://www.linkedin.com/in/uxrishu/" target="_blank"><i
class="fa-brands fa-linkedin-in text-xl"></i></a>
<a href="https://github.com/uxrishu" target="_blank"><i class="fa-brands fa-github text-xl"></i></a>
</div>
</div>
</div>
</nav>
<div
class="relative z-10 container mx-auto px-5 py-12 md:py-24 flex flex-col md:flex-row items-center justify-between">
<div class="lg:max-w-lg lg:w-full md:w-1/2 mb-10 md:mb-0">
<img class="object-cover object-center rounded-lg" alt="hero"
src="./res/images/Rishabh Singh - UIUX Designer 02.png" />
</div>
<div
class="lg:flex-grow md:w-1/2 lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
<h1 class="mb-6 text-white text-2xl md:text-3xl lg:text-4xl font-light leading-relaxed"
style="line-height: 1.3;">Designing standout
brands and seamless experiences! With a track record of 60+ collaborations worldwide, I’m now
shaping Brand Identities & Experiences in New Delhi.</h1>
<div class="flex justify-center md:justify-start">
<a href="./res/Rishabh - UI and UX Designer.pdf" target="_blank"
class="bg-white text-black font-bold py-3 px-8 rounded-full shadow-lg hover:bg-gray-100 transition-colors uppercase tracking-widest text-sm group">
<div class="relative h-[20px] overflow-hidden">
<span class="block transition-transform duration-300 group-hover:-translate-y-full">Resume</span>
<span
class="block absolute top-0 left-0 translate-y-full transition-transform duration-300 group-hover:translate-y-0">Resume</span>
</div>
</a>
</div>
</div>
</div>
</div>
<section class="body-font">
<div class="flex flex-wrap mb-10">
<div class="xl:w-1/3 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60">
<div class="w-20 h-20 inline-flex items-center justify-center rounded-full icons mb-4 flex-shrink-0">
<img src="./res/icons/Branding.svg" alt="">
</div>
<h2 class="heading text-lg sm:text-xl mb-2">Brand Identity</h2>
<p class="subtitle leading-relaxed mb-4">Crafting visual identities that reflect brand's values, using
research and creativity to give memorable branding that sets you apart.<br>
<ul class="bullet-list subtitle italic">
<li>Brand Typography & Colors</li>
<li>Brand Personality & Tonality</li>
<li>Brand Logo</li>
<li>Brand Identity Book</li>
</ul>
</p>
</div>
<div class="xl:w-1/3 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60"
data-aos="fade-up" data-aos-delay="600">
<div class="w-20 h-20 inline-flex items-center justify-center rounded-full icons mb-4 flex-shrink-0">
<img src="./res/icons/UI and UX.svg" alt="">
</div>
<h2 class="heading text-lg sm:text-xl mb-2">UI/UX Design</h2>
<p class="leading-relaxed subtitle mb-4">Design that combines with strategic thinking to create stunning
visuals and intuitive user journeys for a seamless brand experience.<br>
<ul class="bullet-list subtitle italic">
<li>Mobile Apps Design</li>
<li>eCommerce Design</li>
<li>CRMs & ERPs</li>
</ul>
</p>
</div>
<div class="xl:w-1/3 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200 border-opacity-60"
data-aos="fade-up" data-aos-delay="600">
<div class="w-20 h-20 inline-flex items-center justify-center rounded-full icons mb-4 flex-shrink-0">
<img src="./res/icons/Graphic Design.svg" alt="">
</div>
<h2 class="heading text-lg sm:text-xl mb-2">Graphic Design</h2>
<p class="leading-relaxed subtitle mb-4">We create striking graphic designs that captivate and communicate
your message effectively across all social media platforms.<br>
<ul class="bullet-list subtitle italic">
<li>Social Media Post Grid</li>
<li>Trendy Banners for Website</li>
<li>Presentation Deck</li>
</ul>
</p>
</div>
</div>
</section>
<a href="#" id="uparrow"><i class="fa-solid fa-angle-up"></i></a>
<footer class="mt-20 mb-0 md:mb-8 mx-0 md:mx-[15px]">
<div
class="bg-[#121212] text-white rounded-none md:rounded-[30px] p-8 md:p-12 lg:p-16 relative overflow-hidden min-h-[600px] md:min-h-0">
<!-- Top Section -->
<div class="flex flex-col lg:flex-row justify-between items-start lg:items-center relative z-10">
<!-- Left Content -->
<div class="max-w-2xl w-full">
<h2 class="text-4xl md:text-5xl lg:text-7xl font-medium mb-8 leading-16 tracking-tight"
style="line-height: 1.3;">
Ready to begin?<br /> Let's talk!
</h2>
<!-- Original Buttons Removed for Physics Effect -->
</div>
</div>
<!-- Physics World Container -->
<div id="footer-physics-world"></div>
<!-- Spacer -->
<div class="h-16 md:h-24"></div>
<!-- Bottom Section -->
<div class="absolute bottom-0 left-0 right-0 z-30 px-8 md:px-12 lg:px-16 pb-8 md:pb-12 lg:pb-16">
<div
class="border-t border-white/10 pt-8 flex flex-col md:flex-row justify-between items-end md:items-end gap-4 md:gap-0">
<p class="text-gray-500 text-sm md:text-base order-2 md:order-1 w-full md:w-auto text-left">
Crafted by me in 2026
</p>
<!-- Links removed for Physics Effect -->
</div>
</div>
<!-- Earth Visual Effect -->
<div class="footer-earth-wrapper">
<img src="./res/images/footer_earth_horizon_purple.png" alt="Earth Horizon" class="footer-earth-image">
</div>
</div>
</footer>
<script src="./script/script.js"></script>
<script src="./script/footer_physics.js"></script>
<script>
// Initialize Footer Physics only on this page
document.addEventListener('DOMContentLoaded', () => {
if (typeof initFooterPhysics === 'function') {
initFooterPhysics();
}
});
</script>
</body>
</html>