From 50bb89b51d0b277d1a61b955d80d8b58bbee48e2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 15:56:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 199 +++++++++++++++++++++++++---------------------- 1 file changed, 108 insertions(+), 91 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2905dae..b8a3a7f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,12 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { BarChart2, Mic, TrendingUp, Users, Target, Zap, ChevronRight, CheckCircle, Clock, LayoutTemplate } from "lucide-react"; +import { BarChart2, Mic, TrendingUp, Target, Zap, CheckCircle, LayoutTemplate } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [isResumeUploaded, setIsResumeUploaded] = useState(false); + return ( -
- -
+ {!isResumeUploaded && ( +
+

Upload your Resume to continue

+

Unlock personalized interview feedback based on your experience.

+ setIsResumeUploaded(true)} + className="block w-full max-w-sm text-sm text-foreground file:mr-4 file:py-2 file:px-4 file:rounded-full file:border-0 file:bg-primary file:text-white hover:file:bg-primary/90" + /> +
+ )} -
- -
+
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- ); -} +} \ No newline at end of file