diff --git a/src/app/page.tsx b/src/app/page.tsx
index 49da398..5abcbbe 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,9 +9,9 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
+import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
-import { Shield } from "lucide-react";
+import { Shield, CheckCircle, Clock, Smile } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,21 +32,13 @@ export default function LandingPage() {
@@ -56,110 +48,73 @@ export default function LandingPage() {
-
@@ -170,20 +125,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
- title: "General Dentistry",
- description: "Preventative care, exams, and fillings.",
- imageSrc: "http://img.b2bpic.net/free-photo/waiting-room-lobby-with-empty-reception-counter-desk-give-help-support-patients-with-consultation-appointments-professional-treatment-space-with-checkup-visits-clinical-exam_482257-50526.jpg",
- },
+ title: "General Dentistry", description: "Preventative care, exams, and fillings.", imageSrc: "http://img.b2bpic.net/free-photo/waiting-room-lobby-with-empty-reception-counter-desk-give-help-support-patients-with-consultation-appointments-professional-treatment-space-with-checkup-visits-clinical-exam_482257-50526.jpg"},
{
- title: "Cosmetic Dentistry",
- description: "Transform your smile with whitening and veneers.",
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-dentist-treating-patient-clinic_23-2147906074.jpg",
- },
+ title: "Cosmetic Dentistry", description: "Transform your smile with whitening and veneers.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-dentist-treating-patient-clinic_23-2147906074.jpg"},
{
- title: "Emergency Care",
- description: "Prompt support for urgent dental pain.",
- imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg",
- },
+ title: "Emergency Care", description: "Prompt support for urgent dental pain.", imageSrc: "http://img.b2bpic.net/free-photo/beuatiful-female-dentist-posing-smiling-with-her-lovely-patient-laying-dental-chair-redviolet-dress_627829-9777.jpg"},
]}
title="Comprehensive Dental Services"
description="Tailored solutions for every age and dental need."
@@ -197,20 +143,11 @@ export default function LandingPage() {
tag="Key Facts"
metrics={[
{
- id: "1",
- value: "15+",
- description: "Years of Serving North Brisbane",
- },
+ id: "1", value: "15+", description: "Years of Serving North Brisbane"},
{
- id: "2",
- value: "10k+",
- description: "Smiles Transformed",
- },
+ id: "2", value: "10k+", description: "Smiles Transformed"},
{
- id: "3",
- value: "99%",
- description: "Patient Satisfaction Rate",
- },
+ id: "3", value: "99%", description: "Patient Satisfaction Rate"},
]}
metricsAnimation="slide-up"
/>
@@ -224,25 +161,15 @@ export default function LandingPage() {
author="Sarah Miller"
avatars={[
{
- src: "http://img.b2bpic.net/free-photo/brunette-blogger-doing-her-make-up_23-2148192218.jpg",
- alt: "Sarah",
- },
+ src: "http://img.b2bpic.net/free-photo/brunette-blogger-doing-her-make-up_23-2148192218.jpg", alt: "Sarah"},
{
- src: "http://img.b2bpic.net/free-photo/doctor-preparing-consult_23-2149309927.jpg",
- alt: "John",
- },
+ src: "http://img.b2bpic.net/free-photo/doctor-preparing-consult_23-2149309927.jpg", alt: "John"},
{
- src: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-dentist_23-2148396152.jpg",
- alt: "Emily",
- },
+ src: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-dentist_23-2148396152.jpg", alt: "Emily"},
{
- src: "http://img.b2bpic.net/free-photo/old-man-sitting-car-salon-talking-with-manager_1157-31999.jpg",
- alt: "David",
- },
+ src: "http://img.b2bpic.net/free-photo/old-man-sitting-car-salon-talking-with-manager_1157-31999.jpg", alt: "David"},
{
- src: "http://img.b2bpic.net/free-photo/stylish-man-smiling-close-up_23-2148508995.jpg",
- alt: "Jessica",
- },
+ src: "http://img.b2bpic.net/free-photo/stylish-man-smiling-close-up_23-2148508995.jpg", alt: "Jessica"},
]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
@@ -254,20 +181,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
- id: "q1",
- title: "How often should I have a dental checkup?",
- content: "We generally recommend bi-annual cleanings and exams.",
- },
+ id: "q1", title: "How often should I have a dental checkup?", content: "We generally recommend bi-annual cleanings and exams."},
{
- id: "q2",
- title: "Do you accept new patients?",
- content: "Yes, we are always welcoming new patients.",
- },
+ id: "q2", title: "Do you accept new patients?", content: "Yes, we are always welcoming new patients."},
{
- id: "q3",
- title: "What insurance do you accept?",
- content: "We work with most major private health insurance providers.",
- },
+ id: "q3", title: "What insurance do you accept?", content: "We work with most major private health insurance providers."},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Get clear answers to the most common questions."
@@ -279,8 +197,7 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file