Update src/app/page.tsx

This commit is contained in:
2026-03-08 10:12:30 +00:00
parent 0515d0aa08
commit 91a75226a7

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 FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
@@ -64,7 +64,7 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<ProductCardTwo
<FeatureCardTwentyThree
title="Our Dental Services"
description="Comprehensive dental treatments designed to meet all your oral health needs, from routine care to advanced procedures."
tag="Services"
@@ -72,31 +72,30 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
features={[
{
id: "1", brand: "General Dentistry", name: "Dental Fillings & Extraction", price: "Starting at ₹500", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-having-procedure-done-dentist_23-2148985788.jpg?_wi=1", imageAlt: "Dental fillings treatment"
id: "1", title: "Dental Fillings & Extraction", author: "General Dentistry", description: "Starting at ₹500 - Professional care for cavity treatment and tooth extraction when necessary.", tags: ["General", "Affordable"],
imageSrc: "http://img.b2bpic.net/free-photo/female-patient-having-procedure-done-dentist_23-2148985788.jpg?_wi=1", imageAlt: "Dental fillings treatment"
},
{
id: "2", brand: "General Dentistry", name: "Scaling & Polishing", price: "Starting at ₹800", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/background-beauty-care-chair-canal_1303-1837.jpg?_wi=1", imageAlt: "Teeth cleaning and polishing"
id: "2", title: "Scaling & Polishing", author: "General Dentistry", description: "Starting at ₹800 - Professional teeth cleaning and polishing for optimal oral hygiene.", tags: ["Cleaning", "Preventive"],
imageSrc: "http://img.b2bpic.net/free-photo/background-beauty-care-chair-canal_1303-1837.jpg?_wi=1", imageAlt: "Teeth cleaning and polishing"
},
{
id: "3", brand: "Advanced Procedures", name: "Root Canal Treatment (RCT)", price: "Professional Care", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/dentist-showing-x-ray-patient_107420-65382.jpg?_wi=1", imageAlt: "Root canal treatment"
id: "3", title: "Root Canal Treatment (RCT)", author: "Advanced Procedures", description: "Professional Care - Expert endodontic treatment to save your natural tooth.", tags: ["Advanced", "Endodontics"],
imageSrc: "http://img.b2bpic.net/free-photo/dentist-showing-x-ray-patient_107420-65382.jpg?_wi=1", imageAlt: "Root canal treatment"
},
{
id: "4", brand: "Restorative Dentistry", name: "Ceramic Crowns & Bridges", price: "Premium Restoration", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/patient-pointing-teeth-with-dentist_23-2148380326.jpg?_wi=1", imageAlt: "Ceramic crown restoration"
id: "4", title: "Ceramic Crowns & Bridges", author: "Restorative Dentistry", description: "Premium Restoration - Durable and aesthetic solutions for missing or damaged teeth.", tags: ["Restoration", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/patient-pointing-teeth-with-dentist_23-2148380326.jpg?_wi=1", imageAlt: "Ceramic crown restoration"
},
{
id: "5", brand: "Advanced Procedures", name: "Dental Implant Fixing", price: "Advanced Treatment", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/dentist-doing-check-up-patient_23-2149206251.jpg", imageAlt: "Dental implant procedure"
id: "5", title: "Dental Implant Fixing", author: "Advanced Procedures", description: "Advanced Treatment - Permanent solution for missing teeth with natural appearance.", tags: ["Advanced", "Implants"],
imageSrc: "http://img.b2bpic.net/free-photo/dentist-doing-check-up-patient_23-2149206251.jpg", imageAlt: "Dental implant procedure"
},
{
id: "6", brand: "Cosmetic Dentistry", name: "Ceramic Veneers", price: "Smile Enhancement", rating: 5,
reviewCount: "Highly Rated", imageSrc: "http://img.b2bpic.net/free-photo/amazement-woman-excited-looking-side-surprised-happy-young-woman-looking-sideways-exciteme_1258-110117.jpg", imageAlt: "Ceramic veneers cosmetic treatment"
id: "6", title: "Ceramic Veneers", author: "Cosmetic Dentistry", description: "Smile Enhancement - Beautiful, natural-looking veneers for a radiant smile.", tags: ["Cosmetic", "Enhancement"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdfEv3LMPocLC1ILV5yRR55qgJ/uploaded-1772964710494-hdlmhmg0.png", imageAlt: "Ceramic veneers cosmetic treatment"
}
]}
/>