Update src/app/page.tsx

This commit is contained in:
2025-12-28 22:45:13 +00:00
parent 5d1d1f53c4
commit 69eec33893

View File

@@ -1,10 +1,10 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MediaSplitAbout from '@/components/sections/about/MediaSplitAbout';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCardSix from '@/components/sections/product/ProductCardSix';
import TestimonialCardEleven from '@/components/sections/testimonial/TestimonialCardEleven';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSocial from '@/components/sections/footer/FooterSocial';
@@ -67,7 +67,7 @@ export default function LandingPage() {
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
<ProductCardSix
title="Our Specialties"
description="Signature dishes crafted with love and authentic spices"
products={[
@@ -76,28 +76,40 @@ export default function LandingPage() {
name: "Butter Chicken",
price: "$14.99",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184305846-8js4eyi9.jpg",
imageAlt: "Creamy butter chicken curry"
imageAlt: "Creamy butter chicken curry",
brand: "Signature",
rating: 5,
reviewCount: 120
},
{
id: "2",
name: "Hyderabadi Biryani",
price: "$13.99",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766961516564-o08muwvj.jpg",
imageAlt: "Fragrant basmati rice biryani"
imageAlt: "Fragrant basmati rice biryani",
brand: "Traditional",
rating: 5,
reviewCount: 95
},
{
id: "3",
name: "Crispy Samosa",
price: "$4.99",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766961517335-iu8jilsx.jpg",
imageAlt: "Golden fried samosa with chutney"
imageAlt: "Golden fried samosa with chutney",
brand: "Appetizer",
rating: 4,
reviewCount: 78
},
{
id: "4",
name: "Tandoori Naan",
price: "$3.99",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766961518181-i7gx4ce4.jpg",
imageAlt: "Freshly baked tandoori naan bread"
imageAlt: "Freshly baked tandoori naan bread",
brand: "Fresh Baked",
rating: 5,
reviewCount: 156
}
]}
gridVariant="four-items-2x2-equal-grid"