Merge version_3 into main #10

Merged
bender merged 1 commits from version_3 into main 2026-03-07 20:18:24 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
@@ -68,35 +68,29 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<ProductCardTwo
<FeatureCardNine
title="Our Dental Services"
description="Experience world-class dental care with our comprehensive range of treatments designed to meet all your oral health needs"
tag="Services"
textboxLayout="default"
products={[
features={[
{
id: "1", brand: "EXPERT DENTAL CARE", name: "Teeth Cleaning", price: "Starting at $99", rating: 5,
reviewCount: "450+", imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-equipment-white-background_1232-4445.jpg?_wi=1", imageAlt: "Professional teeth cleaning service"
title: "Teeth Cleaning", description: "Professional teeth cleaning service - Starting at $99", imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-equipment-white-background_1232-4445.jpg?_wi=1", imageAlt: "Professional teeth cleaning service"
},
{
id: "2", brand: "EXPERT DENTAL CARE", name: "Dental Implants", price: "Starting at $1,500", rating: 5,
reviewCount: "380+", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-holding-dental-model-hands-concept-dentistry-dental-treatment_169016-67449.jpg", imageAlt: "Dental implant procedure"
title: "Dental Implants", description: "Dental implant procedure - Starting at $1,500", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-holding-dental-model-hands-concept-dentistry-dental-treatment_169016-67449.jpg", imageAlt: "Dental implant procedure"
},
{
id: "3", brand: "EXPERT DENTAL CARE", name: "Teeth Whitening", price: "Starting at $199", rating: 5,
reviewCount: "520+", imageSrc: "http://img.b2bpic.net/free-photo/sunny-close-up-portrait-pretty-blonde-woman-winking-showing-tongue-playful-positive-mood-pastel-sunny-colors_291049-1275.jpg", imageAlt: "Professional teeth whitening"
title: "Teeth Whitening", description: "Professional teeth whitening - Starting at $199", imageSrc: "http://img.b2bpic.net/free-photo/sunny-close-up-portrait-pretty-blonde-woman-winking-showing-tongue-playful-positive-mood-pastel-sunny-colors_291049-1275.jpg", imageAlt: "Professional teeth whitening"
},
{
id: "4", brand: "EXPERT DENTAL CARE", name: "Root Canal Treatment", price: "Starting at $800", rating: 5,
reviewCount: "290+", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentistry-room_1157-19459.jpg", imageAlt: "Root canal treatment"
title: "Root Canal Treatment", description: "Root canal treatment - Starting at $800", imageSrc: "http://img.b2bpic.net/free-photo/old-man-sitting-dentistry-room_1157-19459.jpg", imageAlt: "Root canal treatment"
},
{
id: "5", brand: "EXPERT DENTAL CARE", name: "Braces / Orthodontics", price: "Starting at $3,000", rating: 5,
reviewCount: "310+", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-selfie-with-patient_23-2148396221.jpg", imageAlt: "Orthodontic braces treatment"
title: "Braces / Orthodontics", description: "Orthodontic braces treatment - Starting at $3,000", imageSrc: "http://img.b2bpic.net/free-photo/dentist-taking-selfie-with-patient_23-2148396221.jpg", imageAlt: "Orthodontic braces treatment"
},
{
id: "6", brand: "EXPERT DENTAL CARE", name: "Cosmetic Dentistry", price: "Starting at $500", rating: 5,
reviewCount: "425+", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-gray-casual-summer-clothes-brown-hat-with-natural-makeup_158538-11648.jpg", imageAlt: "Cosmetic dentistry services"
title: "Cosmetic Dentistry", description: "Cosmetic dentistry services - Starting at $500", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-stylish-laughing-model-gray-casual-summer-clothes-brown-hat-with-natural-makeup_158538-11648.jpg", imageAlt: "Cosmetic dentistry services"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -226,4 +220,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}