Update src/app/page.tsx

This commit is contained in:
2026-03-07 17:31:50 +00:00
parent 5f23c7980d
commit 7c5a6ef2bc

View File

@@ -8,7 +8,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Award, Heart, Calendar } from "lucide-react";
import { Sparkles, Award, Heart, Calendar, Package } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,6 +30,7 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -109,6 +110,34 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardTwo
title="Our Dental Products"
description="Explore our premium selection of dental care products and accessories designed for optimal oral health and comfort."
tag="Quality Products"
tagIcon={Package}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", brand: "Oral Hygiene", name: "Electric Toothbrush Pro", price: "$89.99", rating: 5,
reviewCount: "245+", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-toothbrush_1232-1234.jpg", imageAlt: "Premium electric toothbrush"},
{
id: "2", brand: "Whitening Care", name: "Professional Whitening Kit", price: "$129.99", rating: 5,
reviewCount: "380+", imageSrc: "http://img.b2bpic.net/free-photo/dental-whitening-kit_1232-1235.jpg", imageAlt: "Teeth whitening kit for home use"},
{
id: "3", brand: "Fresh Breath", name: "Advanced Mouthwash", price: "$24.99", rating: 5,
reviewCount: "520+", imageSrc: "http://img.b2bpic.net/free-photo/mouthwash-bottle_1232-1236.jpg", imageAlt: "Professional-grade mouthwash"},
{
id: "4", brand: "Dental Care", name: "Premium Floss Set", price: "$34.99", rating: 5,
reviewCount: "195+", imageSrc: "http://img.b2bpic.net/free-photo/dental-floss_1232-1237.jpg", imageAlt: "Premium dental floss collection"},
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Patients Say"
@@ -191,4 +220,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}