Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-04 21:24:56 +00:00

View File

@@ -8,10 +8,10 @@ import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Award, Shield, Star } from "lucide-react";
import { Award, Shield, Star, MessageSquare } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,7 +29,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
@@ -38,6 +38,8 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
brandName="DG Allen LLC"
button={{ text: "Contact Us", href: "#contact" }}
topBarButton={{ text: "Chat with Support", onClick: () => alert("Chatbot initializing...") }}
/>
</div>
@@ -162,4 +164,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}