Merge version_5 into main #9

Merged
bender merged 2 commits from version_5 into main 2026-04-02 15:16:10 +00:00
2 changed files with 6 additions and 7 deletions

View File

@@ -5,7 +5,6 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { Mail } from "lucide-react";
export default function ContactPage() {
return (
@@ -25,10 +24,10 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Benefits", id: "/" },
{ name: "Pricing", id: "/" },
{ name: "Contact", href: "/contact" },
{ name: "Home", id: "hero" },
{ name: "Benefits", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="LocalWebBuilder"
/>

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "Benefits", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", href: "/contact" },
{ name: "Contact", id: "contact" },
]}
brandName="LocalWebBuilder"
/>
@@ -147,4 +147,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}