Update src/app/page.tsx

This commit is contained in:
2026-01-20 10:30:27 +00:00
parent fc9de42ecb
commit 7f8225f777

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
@@ -26,14 +26,15 @@ export default function NeuroLinkPage() {
headingFontWeight="light" headingFontWeight="light"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarStyleApple
brandName="NeuroLink" brandName="NeuroLink"
button={{ navItems={[
text: "Learn More", href: "#about" { name: "About", id: "about" },
}} { name: "Features", id: "features" },
className="border-b border-accent/10" { name: "Metrics", id: "metrics" },
buttonClassName="bg-primary-cta hover:bg-primary-cta/90" { name: "Technology", id: "technology" },
buttonTextClassName="text-secondary-cta font-medium" { name: "Contact", id: "contact" }
]}
/> />
</div> </div>
@@ -202,4 +203,4 @@ export default function NeuroLinkPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }