From 35404a441545389dd1de76abc325c6b461079b21 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 23:52:00 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 133 ++++++++++++----------------------------------- 1 file changed, 33 insertions(+), 100 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bf9e04c..e1d17c4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,12 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; import ContactText from '@/components/sections/contact/ContactText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TeamCardFive from '@/components/sections/team/TeamCardFive'; -import { Award, Clock, Home, MapPin, ShieldCheck, Smile } from "lucide-react"; +import { Award, Clock, Home, MapPin, Smile } from "lucide-react"; export default function LandingPage() { return ( @@ -29,16 +30,12 @@ export default function LandingPage() { +
+ +
+
@@ -146,13 +110,9 @@ export default function LandingPage() {
@@ -161,36 +121,9 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=7" logoText="Gonzalez Renovations" columns={[ - { - title: "Navigation", items: [ - { - label: "Home", href: "#hero"}, - { - label: "About", href: "#about"}, - ], - }, - { - title: "Services", items: [ - { - label: "Kitchens", href: "#services"}, - { - label: "Baths", href: "#services"}, - ], - }, - { - title: "Company", items: [ - { - label: "Portfolio", href: "#gallery"}, - { - label: "Contact", href: "#contact"}, - ], - }, - { - title: "Legal", items: [ - { - label: "Privacy", href: "#"}, - ], - }, + { title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }] }, + { title: "Services", items: [{ label: "Kitchens", href: "#services" }, { label: "Estimate", href: "#estimate" }] }, + { title: "Company", items: [{ label: "Contact", href: "#contact" }] } ]} /> -- 2.49.1