Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 505b6bb744 |
183
src/app/page.tsx
183
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Story",
|
name: "Story", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Visit Us",
|
name: "Visit Us", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Sector 17"
|
brandName="Sector 17"
|
||||||
/>
|
/>
|
||||||
@@ -53,65 +45,40 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Taste Chandigarh. Feel at Home."
|
title="Taste Chandigarh. Feel at Home."
|
||||||
description="Authentic Punjabi flavours, handcrafted from recipes passed down through generations — right here in Viman Nagar."
|
description="Authentic Punjabi flavours, handcrafted from recipes passed down through generations — right here in Viman Nagar."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Visit Us",
|
text: "Visit Us", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/photorealistic-lohri-festival-celebration-with-traditional-food_23-2151098286.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/photorealistic-lohri-festival-celebration-with-traditional-food_23-2151098286.jpg"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-assortment-nutritious-roti_23-2149033975.jpg", alt: "Happy customer 1"},
|
||||||
alt: "Happy customer 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/high-angle-indian-food-assortment_23-2148747700.jpg",
|
src: "http://img.b2bpic.net/free-photo/high-angle-indian-food-assortment_23-2148747700.jpg", alt: "Happy customer 2"},
|
||||||
alt: "Happy customer 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-assortment-traditional-roti_23-2149033998.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-assortment-traditional-roti_23-2149033998.jpg", alt: "Happy customer 3"},
|
||||||
alt: "Happy customer 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-roti-arrangement-table-with-copy-space_23-2149033988.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-roti-arrangement-table-with-copy-space_23-2149033988.jpg", alt: "Happy customer 4"},
|
||||||
alt: "Happy customer 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-friends-dinner-party_23-2151043652.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-friends-dinner-party_23-2151043652.jpg", alt: "Happy customer 5"},
|
||||||
alt: "Happy customer 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Over 5,000 happy bellies fed"
|
avatarText="Over 5,000 happy bellies fed"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "North Indian Delights"},
|
||||||
text: "100% Vegetarian",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentic Spices"},
|
||||||
text: "Authentic Spices",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Slow Cooked Love"},
|
||||||
text: "Slow Cooked Love",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Family Recipes"},
|
||||||
text: "Family Recipes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Viman Nagar Favourite"},
|
||||||
text: "Viman Nagar Favourite",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -121,14 +88,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Most homely food in Pune",
|
"Most homely food in Pune", "Best Dal Makhani", "Authentic North Indian taste", "Warm, welcoming staff", "Absolutely divine paranthas", "Taste of Chandigarh in every bite", "Super fresh and aromatic"]}
|
||||||
"Best Dal Makhani",
|
|
||||||
"Authentic North Indian taste",
|
|
||||||
"Warm, welcoming staff",
|
|
||||||
"Absolutely divine paranthas",
|
|
||||||
"Taste of Chandigarh in every bite",
|
|
||||||
"Super fresh and aromatic",
|
|
||||||
]}
|
|
||||||
title="A Hidden Gem That People Can’t Stop Talking About"
|
title="A Hidden Gem That People Can’t Stop Talking About"
|
||||||
description="Authentic, homely, and full of flavour."
|
description="Authentic, homely, and full of flavour."
|
||||||
/>
|
/>
|
||||||
@@ -151,44 +111,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Chole Bhature", price: "₹179", imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg"},
|
||||||
name: "Chole Bhature",
|
|
||||||
price: "₹179",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Dal Makhani", price: "₹149", imageSrc: "http://img.b2bpic.net/free-photo/traditional-indian-soup-lentils-indian-dhal-spicy-curry-bowl-spices-herbs-rustic-black-wooden-table_2829-18717.jpg"},
|
||||||
name: "Dal Makhani",
|
|
||||||
price: "₹149",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-indian-soup-lentils-indian-dhal-spicy-curry-bowl-spices-herbs-rustic-black-wooden-table_2829-18717.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Paneer Butter Masala", price: "₹159", imageSrc: "http://img.b2bpic.net/free-photo/pre-prepared-food-showcasing-ready-eat-delicious-meals-go_23-2151246078.jpg"},
|
||||||
name: "Paneer Butter Masala",
|
|
||||||
price: "₹159",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pre-prepared-food-showcasing-ready-eat-delicious-meals-go_23-2151246078.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Butter Chicken", price: "₹249", imageSrc: "http://img.b2bpic.net/free-photo/tasty-chicken-curry-bowl_23-2149086036.jpg"},
|
||||||
name: "Mix Veg Dry",
|
|
||||||
price: "₹139",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-spices-dish-brown-plate-green-beans-tomatoes-fork-dark-table_140725-123039.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Mutton Rogan Josh", price: "₹299", imageSrc: "http://img.b2bpic.net/free-photo/lamb-curry-with-rice_23-2149086048.jpg"},
|
||||||
name: "Assorted Breads",
|
|
||||||
price: "₹29",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-baked-bread-hot-fresh-brown-wooden-desk_140725-25894.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Gulab Jamun", price: "₹39", imageSrc: "http://img.b2bpic.net/free-photo/pile-carrots-blue-tray-marble-surface_114579-63907.jpg"},
|
||||||
name: "Gulab Jamun",
|
|
||||||
price: "₹39",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pile-carrots-blue-tray-marble-surface_114579-63907.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Authentic Flavours"
|
title="Authentic Flavours"
|
||||||
description="Handcrafted dishes, prepared fresh to order."
|
description="Handcrafted dishes, prepared fresh to order. Now featuring a selection of classic meat delicacies."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -199,32 +135,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Traditional Recipes", tags: [
|
||||||
title: "Traditional Recipes",
|
"Authentic", "Homely"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086052.jpg"},
|
||||||
"Authentic",
|
|
||||||
"Homely",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-composition_23-2149086052.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Premium Ingredients", tags: [
|
||||||
title: "Fresh Ingredients",
|
"Pure", "Quality"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/view-classic-tomato-soup-brown-cutting-board-mixed-color-table_140725-86491.jpg"},
|
||||||
"Pure",
|
|
||||||
"Vegetarian",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-classic-tomato-soup-brown-cutting-board-mixed-color-table_140725-86491.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Warm Hospitality", tags: [
|
||||||
title: "Warm Hospitality",
|
"Punjabi", "Service"],
|
||||||
tags: [
|
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pakistani-food-arrangement_23-2148825110.jpg"},
|
||||||
"Punjabi",
|
|
||||||
"Service",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pakistani-food-arrangement_23-2148825110.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Sector 17?"
|
title="Why Sector 17?"
|
||||||
description="More than a restaurant, it's a feeling of home."
|
description="More than a restaurant, it's a feeling of home."
|
||||||
@@ -235,8 +156,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Come Hungry. Leave With Memories."
|
title="Come Hungry. Leave With Memories."
|
||||||
description="Reserve a table or order directly on WhatsApp."
|
description="Reserve a table or order directly on WhatsApp."
|
||||||
@@ -250,42 +170,27 @@ export default function LandingPage() {
|
|||||||
logoText="Sector 17"
|
logoText="Sector 17"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links",
|
title: "Quick Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Menu",
|
label: "Menu", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Reservation",
|
label: "Reservation", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Viman Nagar, Pune",
|
label: "Viman Nagar, Pune", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user