1 Commits

Author SHA1 Message Date
d4b8f092b3 Update src/app/page.tsx 2026-03-26 17:53:41 +00:00

View File

@@ -29,21 +29,13 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "Menu",
id: "menu",
},
name: "Menu", id: "menu"},
{
name: "Reviews",
id: "reviews",
},
name: "Reviews", id: "reviews"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="Hyderabad Biryani Hotel"
/>
@@ -52,19 +44,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
title="Authentic Hyderabadi Flavors in the Heart of Malleshwaram"
description="Experience the legacy of traditional spices and slow-cooked perfection. From our legendary Biryanis to succulent Middle Eastern delicacies."
buttons={[
{
text: "View Menu",
href: "#menu",
},
text: "View Menu", href: "#menu"},
{
text: "Order Now",
href: "tel:9606185555",
},
text: "Order Now", href: "tel:9606185555"},
]}
imageSrc="http://img.b2bpic.net/free-photo/vertical-view-fresh-delicious-vegan-salad-various-organic-vegetables-different-spices-with-spoons_140725-136782.jpg"
imageAlt="Traditional Hyderabadi chicken biryani"
@@ -83,23 +70,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "b1",
name: "Hyderabadi Chicken Biryani",
price: "₹250",
imageSrc: "http://img.b2bpic.net/free-photo/steaming-hot-curry-dish-with-fresh-herbs_84443-82590.jpg",
},
id: "b1", name: "Hyderabadi Chicken Biryani", price: "₹250", imageSrc: "http://img.b2bpic.net/free-photo/steaming-hot-curry-dish-with-fresh-herbs_84443-82590.jpg"},
{
id: "b2",
name: "Succulent Mutton Biryani",
price: "₹350",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-fork-arrangement_23-2148747674.jpg",
},
id: "b2", name: "Succulent Mutton Biryani", price: "₹350", imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-fork-arrangement_23-2148747674.jpg"},
{
id: "b3",
name: "Crispy Chicken Drumsticks",
price: "₹220",
imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-inwood-table_1150-12259.jpg",
},
id: "b3", name: "Crispy Chicken Drumsticks", price: "₹220", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-inwood-table_1150-12259.jpg"},
]}
title="Signature Delicacies"
description="Handcrafted dishes prepared with traditional spices and authentic recipes."
@@ -117,9 +92,7 @@ export default function LandingPage() {
author="Ananya Rao"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/woman-lies-her-beautiful-hands-covered-with-mehndi-her-knee_8353-739.jpg",
alt: "Ananya Rao",
},
src: "http://img.b2bpic.net/free-photo/woman-lies-her-beautiful-hands-covered-with-mehndi-her-knee_8353-739.jpg", alt: "Ananya Rao"},
]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
@@ -133,22 +106,14 @@ export default function LandingPage() {
description="Find us at 1st, Benson Cross Road, 9, Sampige Rd, Malleshwaram, Bengaluru. Call or WhatsApp us at 9606185555."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Your Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Your Phone Number", required: true,
},
]}
textarea={{
name: "message",
placeholder: "Your reservation or delivery inquiry",
rows: 4,
name: "message", placeholder: "Your reservation or delivery inquiry", rows: 4,
required: false,
}}
imageSrc="http://img.b2bpic.net/free-psd/banner-sushi-restaurant-template_23-2148645805.jpg"
@@ -163,29 +128,19 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/woman-lies-her-beautiful-hands-covered-with-mehndi-her-knee_8353-739.jpg"
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "Menu",
href: "#menu",
},
label: "Menu", href: "#menu"},
{
label: "Order Online",
href: "tel:9606185555",
},
label: "Order Online", href: "tel:9606185555"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Call: 9606185555",
href: "tel:9606185555",
},
label: "Call: 9606185555", href: "tel:9606185555"},
{
label: "Location",
href: "https://maps.google.com",
},
label: "Location", href: "https://maps.google.com"},
],
},
]}
@@ -197,4 +152,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}