Update src/app/about/page.tsx

This commit is contained in:
2026-03-25 22:20:41 +00:00
parent 7076f8da0b
commit d4e464337d

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import { Clock, Smile, Hammer } from "lucide-react";
@@ -25,29 +25,27 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
<NavbarStyleApple
navItems={[
{
name: "Home", href: "/"},
name: "Home", id: "/"},
{
name: "About Us", href: "/about"},
name: "About Us", id: "/about"},
{
name: "Why Choose Us", href: "/why-us"},
name: "Why Choose Us", id: "/why-us"},
{
name: "Services", href: "/services"},
name: "Services", id: "/services"},
{
name: "Gallery", href: "/gallery"},
name: "Gallery", id: "/gallery"},
{
name: "Reviews", href: "/reviews"},
name: "Reviews", id: "/reviews"},
{
name: "FAQ", href: "/faq"},
name: "FAQ", id: "/faq"},
{
name: "Contact", href: "/#contact"},
name: "Contact", id: "/#contact"},
]}
brandName="Doral Plumbing Co."
button={{
text: "Call Us Today!", href: "tel:786-977-5727"}}
animateOnLoad={true}
/>
</div>