diff --git a/src/app/page.tsx b/src/app/page.tsx index 21d8ffe..f380211 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import Link from "next/link"; -import { Phone, Shield, Clock, TrendingUp, Star } from "lucide-react"; +import { Phone, Shield, Clock, TrendingUp, Star, CheckCircle } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -22,8 +22,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Drain Cleaning", href: "#drain-cleaning" }, { label: "Water Heater Repair", href: "#water-heater" }, { label: "Leak Detection", href: "#leak-detection" }, @@ -32,8 +31,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Service Areas", href: "#services-overview" }, { label: "Contact", href: "/contact" }, @@ -41,8 +39,7 @@ export default function HomePage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: (801) 555-0100", href: "tel:+18015550100" }, { label: "Email: service@oremplumbers.com", href: "mailto:service@oremplumbers.com" }, { label: "Emergency: Available 24/7", href: "tel:+18015550100" }, @@ -50,8 +47,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Licensing Information", href: "#" }, @@ -81,60 +77,71 @@ export default function HomePage() {