diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2bd2eb9..65347bc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,7 +10,7 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { Users, Clock, Star, Zap } from "lucide-react";
+import { Users, Clock, Star, Zap, CheckCircle, AlertCircle, Shield, Wrench } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -23,17 +23,15 @@ export default function HomePage() {
const footerColumns = [
{
- title: "Quick Links",
- items: [
+ title: "Quick Links", items: [
{ label: "Home", href: "#home" },
{ label: "Services", href: "#services" },
- { label: "About Us", href: "/about" },
+ { label: "About Us", href: "#about" },
{ label: "Reviews", href: "#testimonials" },
],
},
{
- title: "Services",
- items: [
+ title: "Services", items: [
{ label: "Emergency Plumbing", href: "#services" },
{ label: "Drain Cleaning", href: "#services" },
{ label: "Leak Repair", href: "#services" },
@@ -41,8 +39,7 @@ export default function HomePage() {
],
},
{
- title: "Contact",
- items: [
+ title: "Contact", items: [
{ label: "Call (904) 808-3988", href: "tel:(904)808-3988" },
{ label: "Book Appointment", href: "#contact" },
{ label: "Get Free Estimate", href: "#contact" },
@@ -50,11 +47,10 @@ export default function HomePage() {
],
},
{
- title: "Service Area",
- items: [
+ title: "Service Area", items: [
{ label: "Jacksonville, FL", href: "#" },
{ label: "Emergency 24/7", href: "tel:(904)808-3988" },
- { label: "Licensed & Insured", href: "/about" },
+ { label: "Licensed & Insured", href: "#about" },
{ label: "100% Satisfaction", href: "#" },
],
},
@@ -67,7 +63,7 @@ export default function HomePage() {
borderRadius="pill"
contentWidth="medium"
sizing="largeSizeMediumTitles"
- background="aurora"
+ background="circleGradient"
cardStyle="inset"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
@@ -87,20 +83,14 @@ export default function HomePage() {