Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-05 04:24:42 +00:00

View File

@@ -29,34 +29,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Reservation",
id: "/reservation",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Reservation", id: "/reservation" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sagar Ratna"
/>
@@ -64,33 +43,17 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Authentic Flavors of the South"
description="Experience tradition redefined in every bite. Sagar Ratna brings the soul of South India to your table."
tag="Est. 2024"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086047.jpg",
imageAlt: "Traditional South Indian Thali",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086047.jpg", imageAlt: "Traditional South Indian Thali"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg",
imageAlt: "Restaurant Ambiance",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086072.jpg?_wi=1",
imageAlt: "Masala Dosa",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-composition-different-pakistan-goodies_23-2148821564.jpg?_wi=1",
imageAlt: "Special Thali",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-arrangement_23-2149086026.jpg?_wi=1",
imageAlt: "Idli Vada Combo",
},
imageSrc: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg", imageAlt: "Restaurant Ambiance"
}
]}
mediaAnimation="slide-up"
rating={5}
@@ -105,7 +68,7 @@ export default function LandingPage() {
title="Crafted with Passion"
description="At Sagar Ratna, every recipe is a journey back home. Our spices are ground fresh, and every dish tells a story of authenticity."
subdescription="Sourcing only the finest ingredients to ensure a premium dining experience."
imageSrc="http://img.b2bpic.net/free-photo/side-view-mushroom-frying-with-stove-spice-human-hand-pan_176474-3151.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/side-view-mushroom-frying-with-stove-spice-human-hand-pan_176474-3151.jpg"
mediaAnimation="blur-reveal"
icon={Award}
/>
@@ -118,12 +81,7 @@ export default function LandingPage() {
title="Loved by Local Foodies"
description="Join thousands of satisfied diners who experience the authentic taste of the south."
names={[
"The Daily Dine",
"City Culinary Weekly",
"Urban Table",
"Authentic Eats",
"Chef's Choice Award",
]}
"The Daily Dine", "City Culinary Weekly", "Urban Table", "Authentic Eats", "Chef's Choice Award"]}
/>
</div>
@@ -133,16 +91,10 @@ export default function LandingPage() {
title="Quality in Every Grain"
description="Our commitment to authenticity goes beyond the plate. We source directly from traditional farmers to maintain the original taste profiles."
metrics={[
{
value: "15+",
title: "Years of Tradition",
},
{
value: "50+",
title: "Authentic Recipes",
},
{ value: "15+", title: "Years of Tradition" },
{ value: "50+", title: "Authentic Recipes" },
]}
imageSrc="http://img.b2bpic.net/free-photo/side-view-mushroom-frying-with-stove-spice-human-hand-pan_176474-3151.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/side-view-mushroom-frying-with-stove-spice-human-hand-pan_176474-3151.jpg"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
@@ -151,18 +103,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Ready for a Culinary Experience?"
description="Join us today for an unforgettable meal prepared with the finest ingredients and authentic heritage techniques."
buttons={[
{
text: "Reserve Now",
href: "/reservation",
},
]}
buttons={[{ text: "Reserve Now", href: "/reservation" }]}
/>
</div>
@@ -171,26 +116,13 @@ export default function LandingPage() {
logoText="Sagar Ratna"
columns={[
{
title: "Links",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
title: "Links", items: [
{ label: "Menu", href: "/menu" },
{ label: "About", href: "/about" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
],
title: "Legal", items: [{ label: "Privacy Policy", href: "#" }],
},
]}
copyrightText="© 2024 Sagar Ratna | Authentic South Indian Cuisine"
@@ -199,4 +131,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}