diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a58e36b..8a31753 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,26 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Hammer, Wrench, Droplet, Paintbrush, Zap, MonitorPlay, Armchair, Layers, TrendingUp, Clock, Users, CheckCircle, Star, Facebook, Instagram, Phone } from "lucide-react"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Hammer, Wrench, Phone, Mail, MessageCircle, CheckCircle } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, + { name: "Home", id: "/" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Portfolio", id: "portfolio" }, + { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]; - const contactButton = { - text: "Call Now", href: "tel:804-938-0669"}; - return (
-
@@ -88,14 +84,14 @@ export default function ContactPage() { { imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-receiving-box_23-2149103401.jpg", imageAlt: "Customer service support"}, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-man-choosing-color_23-2148903521.jpg", imageAlt: "Professional communication"}, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-man-choosing-color_23-2148903521.jpg?_wi=2", imageAlt: "Professional communication"}, ], }, { title: "Service Area Coverage", description: "We proudly serve Richmond, VA and all surrounding areas with comprehensive home services.", icon: Wrench, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-s-hand-holding-push-pin-blur-map_23-2147958186.jpg", imageAlt: "Richmond virginia map location marker"}, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-s-hand-holding-push-pin-blur-map_23-2147958186.jpg?_wi=2", imageAlt: "Richmond virginia map location marker"}, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-cleaning-office-together_23-2149345517.jpg", imageAlt: "Professional home services team working"}, ], @@ -104,7 +100,7 @@ export default function ContactPage() { title: "Free Estimates", description: "Schedule a free consultation and estimate for your project with our experienced team.", icon: CheckCircle, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home_23-2149242082.jpg", imageAlt: "Home improvement project"}, + imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home_23-2149242082.jpg?_wi=2", imageAlt: "Home improvement project"}, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-builder-men-with-smartphones_23-2148751993.jpg", imageAlt: "Professional consultation"}, ], @@ -130,37 +126,8 @@ export default function ContactPage() { /> -
- -
- -
- +
); -} \ No newline at end of file +}