Switch to version 9: modified src/app/page.tsx

This commit is contained in:
2026-03-07 23:05:10 +00:00
parent 92b86e131a
commit a590d017c2

View File

@@ -10,7 +10,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBase from '@/components/sections/footer/FooterBase';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Shield, Zap, Heart, DollarSign } from 'lucide-react';
@@ -300,10 +300,35 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBase
logoText="EXPERT DENTAL CARE"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
columns={[
{
title: "Services", items: [
{ label: "Teeth Cleaning", href: "#services" },
{ label: "Dental Implants", href: "#services" },
{ label: "Teeth Whitening", href: "#services" },
{ label: "Root Canal", href: "#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
{ label: "Book Appointment", href: "#contact" }
]
},
{
title: "Contact", items: [
{ label: "Phone: +1-555-123-4567", href: "tel:+1-555-123-4567" },
{ label: "Email: info@expertdentalcare.com", href: "mailto:info@expertdentalcare.com" },
{ label: "Monday-Friday: 9AM-6PM", href: "#" },
{ label: "Saturday: 10AM-4PM", href: "#" }
]
}
]}
copyrightText="© 2026 EXPERT DENTAL CARE. All rights reserved."
/>
</div>
</ThemeProvider>