Update src/app/page.tsx

This commit is contained in:
2026-04-20 18:50:18 +00:00
parent 0edd642230
commit 1dc00d6450

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Process", id: "about" },
{ name: "About", id: "about" },
{ name: "Domains", id: "domains" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
@@ -87,6 +87,7 @@ export default function LandingPage() {
]}
imageSrc="http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg"
mediaAnimation="slide-up"
buttons={[{ text: "Learn More", href: "/about" }]}
/>
</div>
@@ -189,12 +190,12 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-orange-light-blue-lights-forming-circle-futuristic-concept_181624-59574.jpg"
logoText="Pathfinder CS"
columns={[
{ title: "Platform", items: [{ label: "Assessments", href: "#features" }, { label: "Domains", href: "#domains" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
{ title: "Platform", items: [{ label: "Assessments", href: "/#features" }, { label: "Domains", href: "/#domains" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}