Merge version_1 into main #2
327
src/app/page.tsx
327
src/app/page.tsx
@@ -25,243 +25,108 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Rs Simply South"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Rs Simply South"
|
||||
button={{ text: "Book Table", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
title="Rs Simply South"
|
||||
description="Authentic South Indian flavors in Guwahati. Loved by 300+ foodies. Experience tradition in every bite."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-mushed-potatoes-with-greens-tomato-sauce-grey_140725-104286.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardScroll
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Rs Simply South"
|
||||
description="Authentic South Indian flavors in Guwahati. Loved by 300+ foodies. Experience tradition in every bite."
|
||||
buttons={[{ text: "Explore Menu", href: "#menu" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-mushed-potatoes-with-greens-tomato-sauce-grey_140725-104286.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Authentic Roots"
|
||||
description="Located near Chandmari Flyover, Simply South brings you the best of Andhra and South Indian cuisine. Known for budget-friendly pricing and authentic taste, we are the go-to spot for food lovers."
|
||||
metrics={[
|
||||
{
|
||||
value: "300+",
|
||||
title: "Happy Foodies",
|
||||
},
|
||||
{
|
||||
value: "10+",
|
||||
title: "Years Experience",
|
||||
},
|
||||
{
|
||||
value: "50+",
|
||||
title: "Menu Varieties",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-room-with-paintings-walls_140725-6310.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Authentic Roots"
|
||||
description="Located near Chandmari Flyover, Simply South brings you the best of Andhra and South Indian cuisine. Known for budget-friendly pricing and authentic taste, we are the go-to spot for food lovers."
|
||||
metrics={[
|
||||
{ value: "300+", title: "Happy Foodies" },
|
||||
{ value: "10+", title: "Years Experience" },
|
||||
{ value: "50+", title: "Menu Varieties" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-room-with-paintings-walls_140725-6310.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Paneer Butter Masala Dosa",
|
||||
price: "₹150",
|
||||
variant: "Spicy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086042.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Punugulu",
|
||||
price: "₹80",
|
||||
variant: "Classic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-brazilian-food-arrangement_23-2148739214.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Medu Vada",
|
||||
price: "₹60",
|
||||
variant: "Crispy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-fried-cutlets-with-cooked-rice-dark-floor-photo-dish-meal-meat_140725-82674.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Mini Egg Thali",
|
||||
price: "₹120",
|
||||
variant: "Filling",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/leaves-oily-gourmet-snack-delicious_1232-3803.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Chicken Thali",
|
||||
price: "₹200",
|
||||
variant: "Signature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20633.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Hyderabadi Chicken Biryani",
|
||||
price: "₹180",
|
||||
variant: "Classic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-appetizing-dish-five-bowls-colorful-spices-brown-plate-appetizing-green-beans-tomatoes_140725-123103.jpg",
|
||||
},
|
||||
]}
|
||||
title="Popular Dishes"
|
||||
description="Discover our signature dishes cherished for their authentic taste and quality."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Paneer Butter Masala Dosa", price: "₹150", variant: "Spicy", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086042.jpg" },
|
||||
{ id: "p2", name: "Punugulu", price: "₹80", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-brazilian-food-arrangement_23-2148739214.jpg" },
|
||||
{ id: "p3", name: "Medu Vada", price: "₹60", variant: "Crispy", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-fried-cutlets-with-cooked-rice-dark-floor-photo-dish-meal-meat_140725-82674.jpg" },
|
||||
{ id: "p4", name: "Mini Egg Thali", price: "₹120", variant: "Filling", imageSrc: "http://img.b2bpic.net/free-photo/leaves-oily-gourmet-snack-delicious_1232-3803.jpg" },
|
||||
{ id: "p5", name: "Chicken Thali", price: "₹200", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20633.jpg" },
|
||||
{ id: "p6", name: "Hyderabadi Chicken Biryani", price: "₹180", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-appetizing-dish-five-bowls-colorful-spices-brown-plate-appetizing-green-beans-tomatoes_140725-123103.jpg" },
|
||||
]}
|
||||
title="Popular Dishes"
|
||||
description="Discover our signature dishes cherished for their authentic taste and quality."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardTwo
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Foodie",
|
||||
testimonial: "Great variety of chutneys and generous portions!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-cook-female-wearing-chef-uniform-covered-eyes-with-tomato-isolated-orange-wall_141793-36942.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael Chen",
|
||||
role: "Blogger",
|
||||
testimonial: "Excellent Andhra biryani and South Indian food.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-consumerism-purchasing-concept-glad-fashionable-woman-wears-pink-sunglasses-stylish-jacket-carries-paper-shopping-bags-has-happy-mood-strolls-sreeet-against-urban-bbackground_273609-62290.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Regular",
|
||||
testimonial: "Must try Kadapa Karam Dosa – crispy and spicy!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-pointing-himself-with-his-thumbs_1187-3186.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Kim",
|
||||
role: "Local",
|
||||
testimonial: "The authentic flavors are simply unmatched in Guwahati.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-businesswoman-posing-indoor-brunch-cafe-sousing-her-smartphone-elegant-outfit_291049-2721.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Priya Sharma",
|
||||
role: "Customer",
|
||||
testimonial: "Budget-friendly and consistently tasty quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg",
|
||||
},
|
||||
]}
|
||||
title="Customer Stories"
|
||||
description="Hear what our beloved customers have to say about their experience at Simply South."
|
||||
/>
|
||||
</div>
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardTwo
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Johnson", role: "Foodie", testimonial: "Great variety of chutneys and generous portions!", imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-cook-female-wearing-chef-uniform-covered-eyes-with-tomato-isolated-orange-wall_141793-36942.jpg" },
|
||||
{ id: "t2", name: "Michael Chen", role: "Blogger", testimonial: "Excellent Andhra biryani and South Indian food.", imageSrc: "http://img.b2bpic.net/free-photo/people-consumerism-purchasing-concept-glad-fashionable-woman-wears-pink-sunglasses-stylish-jacket-carries-paper-shopping-bags-has-happy-mood-strolls-sreeet-against-urban-bbackground_273609-62290.jpg" },
|
||||
{ id: "t3", name: "Emily Rodriguez", role: "Regular", testimonial: "Must try Kadapa Karam Dosa – crispy and spicy!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-pointing-himself-with-his-thumbs_1187-3186.jpg" },
|
||||
{ id: "t4", name: "David Kim", role: "Local", testimonial: "The authentic flavors are simply unmatched in Guwahati.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-businesswoman-posing-indoor-brunch-cafe-sousing-her-smartphone-elegant-outfit_291049-2721.jpg" },
|
||||
{ id: "t5", name: "Priya Sharma", role: "Customer", testimonial: "Budget-friendly and consistently tasty quality.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg" },
|
||||
]}
|
||||
title="Customer Stories"
|
||||
description="Hear what our beloved customers have to say about their experience at Simply South."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us"
|
||||
description="Opp. All India Radio, Near Chandmari Flyover, Krishna Nagar, Guwahati, Assam. We are open from 6 AM to 11:30 PM."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Have questions? Let us know.",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-romantic-meeting-restaurant_23-2147735754.jpg?_wi=1"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us"
|
||||
description="Opp. All India Radio, Near Chandmari Flyover, Krishna Nagar, Guwahati, Assam. We are open from 6 AM to 11:30 PM."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name" },
|
||||
{ name: "email", type: "email", placeholder: "Your Email" },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Have questions? Let us know." }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-romantic-meeting-restaurant_23-2147735754.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-romantic-meeting-restaurant_23-2147735754.jpg?_wi=2"
|
||||
logoText="Rs Simply South"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Full Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Directions",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2026 Rs Simply South • Designed with luxury vibes"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-romantic-meeting-restaurant_23-2147735754.jpg"
|
||||
logoText="Rs Simply South"
|
||||
columns={[
|
||||
{ title: "Menu", items: [{ label: "Full Menu", href: "#menu" }] },
|
||||
{ title: "Contact", items: [{ label: "Directions", href: "#contact" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2026 Rs Simply South • Designed with luxury vibes"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user