Skip to content

Commit e4c48e6

Browse files
authored
Merge pull request #316 from apsinghdev/chore/table-content
[chore] add table to contents
2 parents 8f161af + ec473b0 commit e4c48e6

1 file changed

Lines changed: 86 additions & 0 deletions

File tree

  • apps/web/src/app/(main)/(landing)/pitch

apps/web/src/app/(main)/(landing)/pitch/page.tsx

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,92 @@ const Pitch = () => {
7777
</div>
7878
</div>
7979

80+
<div className="py-4 border-b border-border px-4 lg:px-[60px]">
81+
<motion.div
82+
initial={{ opacity: 0, y: 30, filter: "blur(10px)" }}
83+
animate={{ opacity: 1, y: 0, filter: "blur(0px)" }}
84+
transition={{
85+
duration: 0.6,
86+
ease: "easeOut",
87+
type: "spring",
88+
delay: 0.45,
89+
}}
90+
className="max-w-4xl mx-auto text-center"
91+
>
92+
<h2 className="text-2xl lg:text-3xl font-medium text-brand-purple-light font-mono mb-3 lowercase">
93+
table of contents
94+
</h2>
95+
<nav>
96+
<ul className="space-y-1.5 text-text-secondary font-medium lg:text-xl lowercase inline-block">
97+
<li>
98+
<a
99+
href="#mission-statement"
100+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
101+
>
102+
mission statement
103+
</a>
104+
</li>
105+
<li>
106+
<a
107+
href="#my-goal"
108+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
109+
>
110+
my goal
111+
</a>
112+
</li>
113+
<li>
114+
<a
115+
href="#the-plan"
116+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
117+
>
118+
the plan
119+
</a>
120+
</li>
121+
<li>
122+
<a
123+
href="#philosophies"
124+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
125+
>
126+
philosophies i follow
127+
</a>
128+
</li>
129+
<li>
130+
<a
131+
href="#so-how-small"
132+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
133+
>
134+
so how small?
135+
</a>
136+
</li>
137+
<li>
138+
<a
139+
href="#testimonials"
140+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
141+
>
142+
what existing investors said
143+
</a>
144+
</li>
145+
<li>
146+
<a
147+
href="#questions"
148+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
149+
>
150+
questions you may have
151+
</a>
152+
</li>
153+
<li>
154+
<a
155+
href="#invest"
156+
className="text-text-secondary hover:text-brand-purple-light transition-colors duration-300 underline"
157+
>
158+
how to invest in opensox.ai?
159+
</a>
160+
</li>
161+
</ul>
162+
</nav>
163+
</motion.div>
164+
</div>
165+
80166
{/* The Pitch */}
81167
<div className="h-full relative border-b border-border">
82168
<div className="py-8 border-b border-border">

0 commit comments

Comments
 (0)