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