Update src/app/page.tsx

This commit is contained in:
2026-06-04 05:55:36 +00:00
parent 4126755038
commit cbc4bd85f7

View File

@@ -6,7 +6,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
@@ -51,9 +51,9 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
<HeroSplitTestimonial
background={{
variant: "radial-gradient"}}
variant: "plain"}}
title="Savor the Flavors of India"
description="Experience authentic Indian cuisine, handcrafted with love and the finest spices. A culinary journey awaits!"
buttons={[
@@ -62,8 +62,20 @@ export default function LandingPage() {
{
text: "Order Online", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/lime-near-dishes-spices_23-2147894845.jpg"
imageAlt="Authentic Indian spices and a delicious Indian meal in the background"
imageSrc="http://img.b2bpic.net/free-photo/arrangement-colorful-indian-spices_23-2148768007.jpg"
imageAlt="Assortment of colorful Indian spices"
marqueeItems={[
{
type: "image", src: "http://img.b2bpic.net/free-photo/delicious-pakistan-dish-composition_23-2148821523.jpg", alt: "Traditional Chicken Biryani"},
{
type: "image", src: "http://img.b2bpic.net/free-photo/curry-with-chicken-onions-indian-food-asian-cuisine-top-view_2829-6240.jpg", alt: "Creamy Butter Chicken with Naan"},
{
type: "image", src: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-arrangement_23-2149086026.jpg", alt: "Masala Dosa with Sambar and Chutney"},
{
type: "image", src: "http://img.b2bpic.net/free-photo/assortment-indian-dishes-platter_23-2152002848.jpg", alt: "Traditional Indian Vegetarian Thali"},
]}
marqueeSpeed={40}
mediaAnimation="slide-up"
/>
</div>
@@ -71,7 +83,7 @@ export default function LandingPage() {
<MetricSplitMediaAbout
useInvertedBackground={true}
title="Our Culinary Journey: A Taste of Tradition"
description="At SpiceRoute Eats, we believe in preserving the rich heritage of Indian cooking. Our chefs meticulously select fresh, local ingredients and blend them with aromatic spices to bring you dishes that tell a story. Every meal is a celebration of flavors, tradition, and passion."
description="At SpiceRoute Eats, we believe in preserving the rich heritage of Indian cooking. Our chefs meticulously select fresh, local ingredients and blend with aromatic spices to bring you dishes that tell a story. Every meal is a celebration of flavors, tradition, and passion."
metrics={[
{
value: "10+", title: "Years Serving"},
@@ -294,4 +306,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}