Skip to content

Commit e03a646

Browse files
add CTO founder profile
1 parent 296ceb9 commit e03a646

1 file changed

Lines changed: 12 additions & 25 deletions

File tree

src/pages/about.astro

Lines changed: 12 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const founders = [
1212
tags: ["Product Engineering", "Web Platforms", "Startup Growth", "Scalable Systems"],
1313
email: "hello@recursivezero.com",
1414
linkedin: "https://www.linkedin.com/in/xkeshav/",
15-
isActive: true
15+
isActive: true,
1616
},
1717
1818
{
@@ -24,7 +24,7 @@ const founders = [
2424
tags: ["Business Advisory", "Global Partnerships", "Growth"],
2525
email: null,
2626
linkedin: null,
27-
isActive: true
27+
isActive: true,
2828
},
2929
3030
{
@@ -36,9 +36,9 @@ const founders = [
3636
tags: ["Operations", "Execution", "Scalable Systems"],
3737
email: null,
3838
linkedin: null,
39-
isActive: true
39+
isActive: true,
4040
},
41-
{
41+
{
4242
name: "Varun Daga",
4343
designation: "CTO",
4444
location: "Bengaluru",
@@ -51,19 +51,19 @@ const founders = [
5151
],
5252
email: null,
5353
linkedin: null,
54-
isActive: true
55-
}
54+
isActive: true,
55+
},
5656
5757
5858
];
5959
---
6060

6161
<BaseLayout meta={{ title: "About Us" }}>
6262
<main class="bg-background text-foreground">
63-
<!-- HERO -->
63+
6464
<section class="mx-auto max-w-7xl px-6 py-20 lg:px-10">
6565
<div class="grid items-center gap-16 lg:grid-cols-2">
66-
<!-- LEFT -->
66+
6767
<div>
6868
<p class="mb-4 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-500">About Recursive Zero</p>
6969

@@ -83,7 +83,7 @@ const founders = [
8383
meaningful digital products.
8484
</p>
8585

86-
<!-- Stats -->
86+
8787
<div class="mt-10 grid grid-cols-3 gap-4">
8888
<div
8989
class="border-foreground/10 bg-background dark:bg-foreground/[0.04] rounded-3xl border p-6 text-center shadow-sm backdrop-blur-sm"
@@ -111,7 +111,7 @@ const founders = [
111111
</div>
112112
</div>
113113

114-
<!-- RIGHT -->
114+
115115
<div class="space-y-6">
116116
<div
117117
class="border-foreground/10 bg-background/80 dark:bg-foreground/[0.03] overflow-hidden rounded-[3rem] border shadow-xl backdrop-blur-sm"
@@ -120,16 +120,13 @@ const founders = [
120120
</div>
121121

122122
<div class="grid gap-4 md:grid-cols-2">
123-
<!-- Card 1 -->
124123
<div
125124
class="border-foreground/10 rounded-[2rem] border bg-cyan-500/5 p-6 transition-colors dark:bg-cyan-500/10"
126125
>
127126
<h3 class="text-foreground text-xl font-bold">Product Engineering</h3>
128127

129128
<p class="text-foreground/70 mt-3">Building scalable digital products.</p>
130129
</div>
131-
132-
<!-- Card 2 -->
133130
<div
134131
class="border-foreground/10 rounded-[2rem] border bg-cyan-500/5 p-6 transition-colors dark:bg-cyan-500/10"
135132
>
@@ -142,7 +139,7 @@ const founders = [
142139
</div>
143140
</section>
144141

145-
<!-- WHAT WE BUILD -->
142+
146143
<section class="mx-auto max-w-7xl px-6 py-20 lg:px-10">
147144
<p class="mb-4 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-500">What We Do</p>
148145

@@ -177,7 +174,7 @@ const founders = [
177174
</div>
178175
</section>
179176

180-
<!-- FOUNDER -->
177+
181178
<section class="mx-auto max-w-7xl px-6 py-24 lg:px-10">
182179
<div class="mb-12">
183180
<p class="mb-4 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-500">Meet The Team</p>
@@ -212,17 +209,13 @@ const founders = [
212209
</div>
213210

214211
<div>
215-
<!-- Name First -->
216212
<h3 class="text-foreground text-3xl font-bold">
217213
{founder.name}
218214
</h3>
219-
220-
<!-- Designation Below -->
221215
<span class="mt-3 inline-flex rounded-full border border-cyan-500/20 bg-cyan-500/10 px-4 py-2 text-sm font-semibold text-cyan-500">
222216
{founder.designation}
223217
</span>
224218

225-
<!-- Location -->
226219
<p class="text-foreground/70 mt-2 text-lg">
227220
{founder.location}
228221
</p>
@@ -309,16 +302,13 @@ const founders = [
309302
</div>
310303
</section>
311304

312-
<!-- MISSION -->
313305
<section class="mx-auto max-w-7xl px-6 py-24 lg:px-10">
314306
<div
315307
class="border-foreground/10 bg-background relative overflow-hidden rounded-[4rem] border p-10 shadow-sm lg:p-16"
316308
>
317-
<!-- Glow -->
318309
<div class="absolute -left-20 top-0 h-72 w-72 rounded-full bg-cyan-500/10 blur-[120px]"></div>
319310

320311
<div class="relative z-10 grid items-center gap-14 lg:grid-cols-2">
321-
<!-- LEFT -->
322312
<div>
323313
<p class="mb-4 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-500">Our Mission</p>
324314

@@ -338,7 +328,6 @@ const founders = [
338328
</p>
339329
</div>
340330

341-
<!-- RIGHT -->
342331
<div class="grid gap-5">
343332
<div
344333
class="border-foreground/10 bg-foreground/[0.03] rounded-[2rem] border p-6 transition hover:-translate-y-1"
@@ -367,8 +356,6 @@ const founders = [
367356
</div>
368357
</div>
369358
</section>
370-
371-
<!-- CTA -->
372359
<section class="mx-auto max-w-7xl px-6 pb-24 lg:px-10">
373360
<div class="border-foreground/10 rounded-[4rem] border p-16 text-center shadow-sm">
374361
<p class="mb-4 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-500">Let’s Work Together</p>

0 commit comments

Comments
 (0)