diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7316ede..0109dfc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,6 +10,8 @@ import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+import FaqSplitText from "@/components/sections/faq/FaqSplitText";
+import ContactSplit from "@/components/sections/contact/ContactSplit";
import { Award, Sparkles, Zap, Smile, Shield, Heart, CheckCircle } from "lucide-react";
export default function HomePage() {
@@ -21,36 +23,6 @@ export default function HomePage() {
{ name: "Contact", id: "/contact" },
];
- const footerColumns = [
- {
- title: "Quick Links",
- items: [
- { label: "Home", href: "/" },
- { label: "Services", href: "/services" },
- { label: "About", href: "/about" },
- { label: "Testimonials", href: "#testimonials" },
- ],
- },
- {
- title: "Contact Info",
- items: [
- { label: "Phone: +91-9876-543-210", href: "tel:+919876543210" },
- { label: "Email: hello@smileworld.clinic", href: "mailto:hello@smileworld.clinic" },
- { label: "WhatsApp: +91-9876-543-210", href: "https://wa.me/919876543210" },
- { label: "Address: Nagpur, Maharashtra", href: "#" },
- ],
- },
- {
- title: "Legal",
- items: [
- { label: "Privacy Policy", href: "#" },
- { label: "Terms of Service", href: "#" },
- { label: "Appointment Terms", href: "#" },
- { label: "Disclaimer", href: "#" },
- ],
- },
- ];
-
return (