-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
439 lines (399 loc) · 31.4 KB
/
start.html
File metadata and controls
439 lines (399 loc) · 31.4 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foligo - Turn Talk into Opportunity</title>
<!-- Load Tailwind CSS from CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Set Inter as the default font -->
<style>
html {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
/* Simple typing indicator */
.typing-indicator {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.typing-indicator span {
height: 10px;
width: 10px;
margin: 0 2px;
background-color: #4f46e5; /* indigo-600 */
border-radius: 50%;
display: inline-block;
animation: bounce 1.4s infinite both;
}
.typing-indicator span:nth-child(1) { animation-delay: 0.0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
0%, 80%, 100% { transform: scale(0); }
40% { transform: scale(1.0); }
}
</style>
</head>
<body class="bg-slate-900 text-slate-200 antialiased">
<!-- Header -->
<header class="fixed top-0 left-0 right-0 bg-slate-900/80 backdrop-blur-md z-50 border-b border-slate-800">
<nav class="container mx-auto max-w-7xl px-6 py-4 flex justify-between items-center">
<!-- Logo -->
<a href="#" class="text-3xl font-extrabold text-white">
foli<span class="text-indigo-400">go</span>
</a>
<!-- Nav Links (Desktop) -->
<div class="hidden md:flex items-center space-x-6">
<a href="#features" class="text-slate-300 hover:text-indigo-400 transition-colors">Features</a>
<a href="#demo" class="text-slate-300 hover:text-indigo-400 transition-colors">How It Works</a>
<a href="#use-cases" class="text-slate-300 hover:text-indigo-400 transition-colors">Use Cases</a>
<a href="https://foligo.tech" target="_blank" class="bg-indigo-600 text-white px-5 py-2 rounded-lg font-medium shadow-lg hover:bg-indigo-500 transition-all transform hover:-translate-y-0.5">
Sign Up
</a>
</div>
<!-- Mobile Menu Button (placeholder) -->
<div class="md:hidden">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-white"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
</div>
</nav>
</header>
<main class="pt-20">
<!-- Hero Section -->
<section id="hero" class="container mx-auto max-w-7xl px-6 pt-16 pb-24 md:pt-24 md:pb-32 text-center">
<h1 class="text-5xl md:text-7xl font-extrabold text-transparent bg-clip-text bg-gradient-to-r from-white via-slate-100 to-indigo-300 tracking-tight !leading-tight">
Turn Talk into Opportunity.
</h1>
<p class="mt-6 text-lg md:text-xl text-slate-300 max-w-3xl mx-auto">
Foligo is the conversational AI that transforms your scattered thoughts and project updates into polished portfolio pieces, blog posts, and social media content.
</p>
<div class="mt-10 flex flex-col sm:flex-row justify-center items-center gap-4">
<a href="#demo" class="w-full sm:w-auto bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-8 py-4 rounded-lg font-semibold text-lg shadow-xl hover:shadow-2xl transition-all transform hover:-translate-y-1">
See How It Works
</a>
<a href="https://foligo.tech" target="_blank" class="w-full sm:w-auto bg-slate-700 text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-slate-600 transition-colors">
Visit foligo.tech
</a>
</div>
</section>
<!-- Interactive Demo Section -->
<section id="demo" class="container mx-auto max-w-7xl px-6 pb-24 md:pb-32">
<div class="bg-slate-800/60 border border-slate-700 rounded-2xl shadow-2xl overflow-hidden">
<!-- Demo Header -->
<div class="px-6 py-5 border-b border-slate-700">
<h2 class="text-2xl font-bold text-white">Live Demo: From Mumble to Masterpiece</h2>
<p class="text-slate-400">Click "Generate" to see Foligo transform a simple conversation into multi-platform content.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-0">
<!-- Left Panel: Conversation -->
<div class="p-6 lg:border-r border-slate-700">
<h3 class="text-lg font-semibold text-white mb-4 flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2 text-indigo-400"><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line></svg>
Your Conversation
</h3>
<div class="bg-slate-900 rounded-lg p-4 space-y-4 h-96 overflow-y-auto">
<!-- Chat Bubble: User -->
<div class="flex justify-end">
<div class="bg-indigo-600 text-white p-3 rounded-lg rounded-br-none max-w-xs">
<p class="text-sm">"Uhh, so yeah, I just finished hosting this Python workshop for HackPSU. It was pretty cool. We covered, like, data structures and stuff. Maybe 60 people showed up? It was for beginners."</p>
</div>
</div>
<!-- Chat Bubble: AI -->
<div class="flex justify-start">
<div class="bg-slate-700 text-slate-200 p-3 rounded-lg rounded-bl-none max-w-xs">
<p class="font-medium text-indigo-300 text-xs mb-1">Foligo AI</p>
<p class="text-sm">"That sounds like a great event! To create a detailed post, could you tell me: What were the 2-3 key topics you covered within data structures? And what was the main goal you wanted beginners to achieve?"</p>
</div>
</div>
<!-- Chat Bubble: User -->
<div class="flex justify-end">
<div class="bg-indigo-600 text-white p-3 rounded-lg rounded-br-none max-w-xs">
<p class="text-sm">"Oh, right. The goal was just to get them comfortable and show them they *can* code. We focused on Lists and Dictionaries, and I briefly mentioned Big O notation to show why it matters."</p>
</div>
</div>
</div>
<button id="generate-button" class="mt-4 w-full bg-gradient-to-r from-green-500 to-emerald-600 text-white px-6 py-3 rounded-lg font-semibold text-lg shadow-lg hover:shadow-xl transition-all transform hover:-translate-y-0.5">
Generate Content
</button>
</div>
<!-- Right Panel: Generated Content -->
<div class="p-6">
<!-- Tabs -->
<div class="flex border-b border-slate-700 mb-4">
<button data-tab="portfolio" class="tab-button flex-1 py-2 font-medium text-white border-b-2 border-indigo-500">
Portfolio
</button>
<button data-tab="linkedin" class="tab-button flex-1 py-2 font-medium text-slate-400 border-b-2 border-transparent hover:border-slate-500 hover:text-slate-200 transition-colors">
LinkedIn
</button>
<button data-tab="x" class="tab-button flex-1 py-2 font-medium text-slate-400 border-b-2 border-transparent hover:border-slate-500 hover:text-slate-200 transition-colors">
X (Twitter)
</button>
</div>
<!-- Output Area -->
<div id="output-area" class="relative bg-white text-gray-900 rounded-lg p-6 h-96 overflow-y-auto shadow-inner" style="min-height: 24rem;">
<!-- Initial Prompt -->
<div id="prompt-message" class="absolute inset-0 flex flex-col items-center justify-center text-center text-slate-500 p-4">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="mb-4 text-slate-400"><path d="m12 3-1.9 1.9a5 5 0 0 0-1.4 3.5v.8c0 1.1-.4 2.1-1.1 2.8-.8.7-1.8 1-2.9 1H3"></path><path d="m21 3 1.9 1.9a5 5 0 0 1-1.4 3.5v.8c0 1.1.4 2.1 1.1 2.8.8.7 1.8 1 2.9 1H21"></path><path d="M12 21v-3"></path><path d="M9 18h6"></path><path d="M12 3v15"></path></svg>
<h4 class="font-semibold text-lg">Content will appear here</h4>
<p class="text-sm">Click the "Generate Content" button to see the AI in action.</p>
</div>
<!-- Loading Indicator -->
<div id="loading-indicator" class="absolute inset-0 typing-indicator hidden">
<span></span><span></span><span></span>
</div>
<!-- Tab Content: Portfolio -->
<div id="content-portfolio" class="tab-content hidden prose prose-sm max-w-none">
<h2>Empowering Beginners: Hosting a 60-Person Python Data Structures Workshop for HackPSU</h2>
<p class="text-gray-500 text-sm">Published: October 25, 2025 • Category: Workshop</p>
<p>I had the incredible opportunity to design and host a Python workshop for over 60 beginner coders as part of a HackPSU initiative. The primary goal was to demystify programming and build foundational confidence, showing attendees that they are fully capable of tackling complex topics.</p>
<p>The session focused on the fundamentals of data structures, which are critical for writing efficient and effective code. We dove deep into two of the most common and powerful structures:</p>
<ul>
<li><strong>Lists:</strong> Understanding how to store, access, and manipulate ordered collections of data.</li>
<li><strong>Dictionaries:</strong> Exploring key-value pairs and their powerful use cases for fast data lookup.</li>
</ul>
<p>To tie it all together, I introduced the concept of <strong>Big O notation</strong>. This provided context for *why* choosing the right data structure matters, giving students a glimpse into code efficiency and performance optimization. The energy and engagement from the attendees were fantastic, and I'm thrilled to have helped build a solid foundation for their coding journeys.</p>
</div>
<!-- Tab Content: LinkedIn -->
<div id="content-linkedin" class="tab-content hidden prose prose-sm max-w-none">
<p>Thrilled to share the success of the Python for Beginners workshop I hosted for @HackPSU!</p>
<p>It was incredibly rewarding to help 60+ students take their first steps into data structures. We broke down the fundamentals of Lists and Dictionaries and even touched on *why* they matter with a brief intro to Big O notation.</p>
<p>The main goal was to build confidence and show that anyone can learn to code. Seeing the engagement and "aha" moments from the group was the absolute highlight.</p>
<p>A huge thank you to everyone who attended and to HackPSU for the opportunity to share my passion!</p>
<p>#Python #Workshop #Mentorship #DataStructures #HackPSU #TechEducation #Community</p>
</div>
<!-- Tab Content: X (Twitter) -->
<div id="content-x" class="tab-content hidden prose prose-sm max-w-none">
<p>Just wrapped a packed Python workshop for 60+ beginners at @HackPSU! 🐍</p>
<p>We dove into data structures (lists, dicts) and touched on Big O notation to build a solid foundation. So much energy and great questions!</p>
<p>So rewarding to help demystify coding for new developers. 🚀</p>
<p>#Python #HackPSU #DevCommunity #Workshop #LearnToCode</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="container mx-auto max-w-7xl px-6 pb-24 md:pb-32">
<div class="text-center mb-12 md:mb-16">
<h2 class="text-4xl md:text-5xl font-extrabold text-white">All From a Single Conversation.</h2>
<p class="mt-4 text-lg text-slate-300 max-w-2xl mx-auto">Foligo is more than a writing tool. It's your personal content strategist.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg">
<div class="bg-indigo-600 text-white w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line></svg>
</div>
<h3 class="text-xl font-bold text-white mb-2">Conversational AI</h3>
<p class="text-slate-300">Our voice-first interface feels like a natural conversation, not a form. It asks the right questions to pull out the details that matter.</p>
</div>
<!-- Feature 2 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg">
<div class="bg-indigo-600 text-white w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><line x1="10" y1="9" x2="8" y2="9"></line></svg>
</div>
<h3 class="text-xl font-bold text-white mb-2">Automated Portfolio</h3>
<p class="text-slate-300">New user? Go from zero to a full, professional portfolio website in under 5 minutes during onboarding. No code required.</p>
</div>
<!-- Feature 3 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg">
<div class="bg-indigo-600 text-white w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.72"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.72-1.72"></path></svg>
</div>
<h3 class="text-xl font-bold text-white mb-2">Multi-Platform Content</h3>
<p class="text-slate-300">Instantly generates tailored content for your personal site, a professional post for LinkedIn, and a concise update for X (Twitter).</p>
</div>
<!-- Feature 4 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg">
<div class="bg-indigo-600 text-white w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 16-4 4-4-4"></path><path d="m17 20v-10.3a.7.7 0 0 0-.1-.4l-1.3-2a.7.7 0 0 0-.6-.3H4.8a.8.8 0 0 0-.7 1.1L6 14.8a.8.8 0 0 0 .7.5H17"></path><path d="m3 8 4-4 4 4"></path><path d="m7 4v10.3a.7.7 0 0 0 .1.4l1.3 2a.7.7 0 0 0 .6.3h8.2a.8.8 0 0 0 .7-1.1L18 5.2a.8.8 0 0 0-.7-.5H7"></path></svg>
</div>
<h3 class="text-xl font-bold text-white mb-2">Dual-Audience Focus</h3>
<p class="text-slate-300">Perfect for individuals documenting projects and event organizers (like HackPSU) creating promotional content and announcements.</p>
</div>
</div>
</section>
<!-- Use Cases Section -->
<section id="use-cases" class="bg-slate-800/60 border-y border-slate-700 py-24 md:py-32">
<div class="container mx-auto max-w-7xl px-6 grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<!-- Column 1: For Individuals -->
<div>
<span class="text-indigo-400 font-semibold">FOR INDIVIDUALS</span>
<h3 class="mt-2 text-3xl md:text-4xl font-extrabold text-white !leading-tight">
Build your brand, one conversation at a time.
</h3>
<p class="mt-4 text-lg text-slate-300">
Effortlessly document your projects, internships, and skills. Turn that walk between classes into a productive portfolio update. Never miss an opportunity to showcase your hard work and expertise.
</p>
<ul class="mt-6 space-y-2 text-slate-300">
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Document projects while they're fresh in your mind.
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Generate polished blog posts from simple ideas.
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Keep your LinkedIn profile active and engaging.
</li>
</ul>
</div>
<!-- Column 2: For Organizers -->
<div>
<span class="text-purple-400 font-semibold">FOR ORGANIZERS</span>
<h3 class="mt-2 text-3xl md:text-4xl font-extrabold text-white !leading-tight">
Amplify your event's reach, instantly.
</h3>
<p class="mt-4 text-lg text-slate-300">
Stop juggling documents. Quickly generate promotional content, announcements, and post-event summaries for your club, hackathon, or organization. Engage your audience on every platform.
</p>
<ul class="mt-6 space-y-2 text-slate-300">
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Create event announcements in seconds.
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Generate promotional copy for X, LinkedIn, and email.
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5 text-green-400 mr-2 flex-shrink-0"><polyline points="20 6 9 17 4 12"></polyline></svg>
Instantly write post-event summaries and thank-yous.
</li>
</ul>
</div>
</div>
</section>
<!-- Future Features Section -->
<section id="future" class="container mx-auto max-w-7xl px-6 py-24 md:py-32">
<div class="text-center max-w-3xl mx-auto">
<h2 class="text-4xl md:text-5xl font-extrabold text-white">The Future of Foligo</h2>
<p class="mt-4 text-lg text-slate-300">
Our vision is to build a complete, AI-powered career companion. Coming soon:
</l>
</div>
<div class="mt-12 md:mt-16 grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<!-- Future 1 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg flex items-start space-x-4">
<div class="bg-indigo-600/30 text-indigo-300 w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
</div>
<div>
<h3 class="text-xl font-bold text-white mb-1">AI-Powered Image Selection</h3>
<p class="text-slate-300">Foligo will access your project's URL, take screenshots, and intelligently select the most relevant images to include in your portfolio post.</p>
</div>
</div>
<!-- Future 2 -->
<div class="bg-slate-800 p-6 rounded-xl border border-slate-700 shadow-lg flex items-start space-x-4">
<div class="bg-indigo-600/30 text-indigo-300 w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5Z"></path><path d="M18 9h2a2 2 0 0 1 2 2v9l-4-4h-6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2Z"></path></svg>
</div>
<div>
<h3 class="text-xl font-bold text-white mb-1">Interview Preparation Tool</h3>
<p class="text-slate-300">Leverage all your documented projects to get AI-powered interview prep. Ask "What's my best experience for this job?" and get a perfect summary.</p>
</div>
</div>
</div>
</section>
<!-- Final CTA Section -->
<section id="cta" class="bg-gradient-to-r from-indigo-600 to-purple-700 py-24">
<div class="container mx-auto max-w-3xl px-6 text-center">
<h2 class="text-4xl md:text-5xl font-extrabold text-white">
Ready to build your portfolio, hands-free?
</h2>
<p class="mt-6 text-lg md:text-xl text-indigo-100 max-w-2xl mx-auto">
Get started with Foligo today. Turn your experiences into assets, and your conversations into opportunities.
</l>
<div class="mt-10">
<a href="https://foligo.tech" target="_blank" class="bg-white text-indigo-700 px-10 py-4 rounded-lg font-bold text-lg shadow-2xl hover:bg-slate-100 transition-all transform hover:-translate-y-1">
Get Started Now
</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-slate-900 border-t border-slate-800">
<div class="container mx-auto max-w-7xl px-6 py-12 flex flex-col md:flex-row justify-between items-center text-center md:text-left">
<div class="mb-4 md:mb-0">
<a href="#" class="text-2xl font-extrabold text-white">
foli<span class="text-indigo-400">go</span>
</a>
<p class="text-slate-400 text-sm mt-1">© 2025 Foligo Technologies, Inc. All rights reserved.</p>
</div>
<div class="flex items-center space-x-6">
<a href="#features" class="text-slate-400 hover:text-indigo-400 transition-colors">Features</a>
<a href="https://foligo.tech" target="_blank" class="text-slate-400 hover:text-indigo-400 transition-colors">Sign Up</a>
<a href="#" class="text-slate-400 hover:text-indigo-400 transition-colors">Privacy</a>
</div>
</div>
</footer>
<!-- JavaScript for Interactivity -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const generateButton = document.getElementById('generate-button');
const promptMessage = document.getElementById('prompt-message');
const loadingIndicator = document.getElementById('loading-indicator');
const tabButtons = document.querySelectorAll('.tab-button');
const tabContents = document.querySelectorAll('.tab-content');
// Handle Generate Button Click
generateButton.addEventListener('click', () => {
// Show loading state
promptMessage.classList.add('hidden');
loadingIndicator.classList.remove('hidden');
// Disable button
generateButton.disabled = true;
generateButton.textContent = 'Generating...';
generateButton.classList.add('opacity-70', 'cursor-not-allowed');
// Simulate AI generation time
setTimeout(() => {
// Hide loading
loadingIndicator.classList.add('hidden');
// Show default content (Portfolio)
showTab('portfolio');
// Re-enable button
generateButton.disabled = false;
generateButton.textContent = 'Generate Content';
generateButton.classList.remove('opacity-70', 'cursor-not-allowed');
}, 1500); // 1.5 second delay
});
// Handle Tab Switching
tabButtons.forEach(button => {
button.addEventListener('click', () => {
const tabName = button.dataset.tab;
showTab(tabName);
});
});
function showTab(tabName) {
// Hide prompt message
promptMessage.classList.add('hidden');
// Update tab button styles
tabButtons.forEach(btn => {
if (btn.dataset.tab === tabName) {
btn.classList.remove('text-slate-400', 'border-transparent', 'hover:border-slate-500', 'hover:text-slate-200');
btn.classList.add('text-white', 'border-indigo-500');
} else {
btn.classList.remove('text-white', 'border-indigo-500');
btn.classList.add('text-slate-400', 'border-transparent', 'hover:border-slate-500', 'hover:text-slate-200');
}
});
// Show correct tab content
tabContents.forEach(content => {
if (content.id === `content-${tabName}`) {
content.classList.remove('hidden');
} else {
content.classList.add('hidden');
}
});
}
});
</script>
</body>
</html>