9 Commits

Author SHA1 Message Date
5d51b7cf84 Merge version_2 into main
Merge version_2 into main
2026-06-04 05:56:49 +00:00
e8fb41be71 Update src/app/page.tsx 2026-06-04 05:56:46 +00:00
d703a1a5cb Merge version_2 into main
Merge version_2 into main
2026-06-04 05:56:25 +00:00
1b04de22f3 Update src/app/page.tsx 2026-06-04 05:56:19 +00:00
3b9c6e1a43 Merge version_2 into main
Merge version_2 into main
2026-06-04 05:55:39 +00:00
cbc4bd85f7 Update src/app/page.tsx 2026-06-04 05:55:36 +00:00
e017d157cb Merge version_1 into main
Merge version_1 into main
2026-06-04 05:55:08 +00:00
4126755038 Merge version_1 into main
Merge version_1 into main
2026-06-04 05:54:44 +00:00
fc3b1eb4f8 Merge version_1 into main
Merge version_1 into main
2026-06-04 05:53:50 +00:00

View File

@@ -6,7 +6,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterCard from '@/components/sections/footer/FooterCard'; 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 MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
@@ -51,9 +51,9 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardScroll <HeroSplitTestimonial
background={{ background={{
variant: "radial-gradient"}} variant: "plain"}}
title="Savor the Flavors of India" title="Savor the Flavors of India"
description="Experience authentic Indian cuisine, handcrafted with love and the finest spices. A culinary journey awaits!" description="Experience authentic Indian cuisine, handcrafted with love and the finest spices. A culinary journey awaits!"
buttons={[ buttons={[
@@ -62,8 +62,30 @@ export default function LandingPage() {
{ {
text: "Order Online", href: "#contact"}, text: "Order Online", href: "#contact"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/lime-near-dishes-spices_23-2147894845.jpg" testimonials={[
imageAlt="Authentic Indian spices and a delicious Indian meal in the background" {
name: "Aisha Khan", handle: "@AishaFoodie", testimonial: "The Chicken Biryani here is absolutely divine! Perfectly spiced and cooked. A true taste of home!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-women-s-day_23-2151931532.jpg", imageAlt: "Aisha Khan avatar"
},
{
name: "Rahul Singh", handle: "@SpiceSeeker", testimonial: "Butter Chicken was creamy and rich, exactly how it should be. The service was also excellent. Will definitely be back!", rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/excitement-shock-surprise-positive-reaction-emotional-ecstatic-overjoyed-caucasian-female-blue-shirt-opening-mouth-widely-being-excited-with-spontaneous-trip-holding-hands-together_343059-2804.jpg", imageAlt: "Rahul Singh avatar"
}
]}
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> </div>
@@ -71,7 +93,7 @@ export default function LandingPage() {
<MetricSplitMediaAbout <MetricSplitMediaAbout
useInvertedBackground={true} useInvertedBackground={true}
title="Our Culinary Journey: A Taste of Tradition" 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={[ metrics={[
{ {
value: "10+", title: "Years Serving"}, value: "10+", title: "Years Serving"},
@@ -294,4 +316,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }