1 Commits

Author SHA1 Message Date
c8f706c2b9 Update src/app/page.tsx 2026-05-13 08:53:48 +00:00

View File

@@ -32,25 +32,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "About",
id: "about",
},
name: "About", id: "about"},
{
name: "Menu",
id: "products",
},
name: "Menu", id: "products"},
{
name: "Testimonials",
id: "testimonials",
},
name: "Testimonials", id: "testimonials"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="Salt'n Pepper"
/>
@@ -60,91 +50,50 @@ export default function LandingPage() {
<HeroBillboardTestimonial
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
title="A Taste of Excellence in Bahawalpur"
description="Experience fine dining at Salt'n Pepper, where tradition meets contemporary culinary artistry in the heart of the city."
testimonials={[
{
name: "Ali Khan",
handle: "@alikhan",
testimonial: "Exceptional flavors and service. A must-visit in Bahawalpur.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg",
},
name: "Ali Khan", handle: "@alikhan", testimonial: "Exceptional flavors and service. A must-visit in Bahawalpur.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg"},
{
name: "Sarah Ahmed",
handle: "@sarah99",
testimonial: "The atmosphere is unmatched. Perfect for family dinners.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
},
name: "Sarah Ahmed", handle: "@sarah99", testimonial: "The atmosphere is unmatched. Perfect for family dinners.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg"},
{
name: "Bilal Ahmed",
handle: "@bilal_foodie",
testimonial: "Top-tier quality. Never disappointed by the menu variety.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-table_23-2149212128.jpg",
},
name: "Bilal Ahmed", handle: "@bilal_foodie", testimonial: "Top-tier quality. Never disappointed by the menu variety.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-table_23-2149212128.jpg"},
{
name: "Fatima Z.",
handle: "@fatimaz",
testimonial: "Absolutely the best fine dining experience I have had in the city.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg",
},
name: "Fatima Z.", handle: "@fatimaz", testimonial: "Absolutely the best fine dining experience I have had in the city.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg"},
{
name: "Omar K.",
handle: "@omark",
testimonial: "Consistently great food and a very welcoming staff.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-traveling-without-covid_23-2149077813.jpg",
},
name: "Omar K.", handle: "@omark", testimonial: "Consistently great food and a very welcoming staff.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-traveling-without-covid_23-2149077813.jpg"},
]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-table-arrangement-with-plant_23-2148914883.jpg"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/plate-set-with-fork-spoon-knife_140725-1835.jpg",
alt: "Diner 1",
},
src: "http://img.b2bpic.net/free-photo/plate-set-with-fork-spoon-knife_140725-1835.jpg", alt: "Diner 1"},
{
src: "http://img.b2bpic.net/free-photo/flute-with-two-white-black-porcelain-plates-different-size-served-table-with-natural-fir-branch_132075-6157.jpg",
alt: "Diner 2",
},
src: "http://img.b2bpic.net/free-photo/flute-with-two-white-black-porcelain-plates-different-size-served-table-with-natural-fir-branch_132075-6157.jpg", alt: "Diner 2"},
{
src: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg",
alt: "Diner 3",
},
src: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg", alt: "Diner 3"},
{
src: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-view_23-2148914893.jpg",
alt: "Diner 4",
},
src: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-view_23-2148914893.jpg", alt: "Diner 4"},
{
src: "http://img.b2bpic.net/free-photo/smiling-tender-parisian-girl-stylish-outfit-sends-air-kiss-portrait-young-woman-with-expressive-look_197531-12004.jpg",
alt: "Diner 5",
},
src: "http://img.b2bpic.net/free-photo/smiling-tender-parisian-girl-stylish-outfit-sends-air-kiss-portrait-young-woman-with-expressive-look_197531-12004.jpg", alt: "Diner 5"},
]}
marqueeItems={[
{
type: "text",
text: "Michelin Quality",
},
type: "text", text: "Michelin Quality"},
{
type: "text",
text: "Local Ingredients",
},
type: "text", text: "Local Ingredients"},
{
type: "text",
text: "Fine Dining",
},
type: "text", text: "Fine Dining"},
{
type: "text",
text: "Authentic Recipes",
},
type: "text", text: "Authentic Recipes"},
{
type: "text",
text: "Warm Atmosphere",
},
type: "text", text: "Warm Atmosphere"},
]}
/>
</div>
@@ -165,34 +114,16 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "1",
label: "01",
title: "Expert Chefs",
items: [
"Culinary mastery",
"Innovative recipes",
"Professional service",
],
id: "1", label: "01", title: "Expert Chefs", items: [
"Culinary mastery", "Innovative recipes", "Professional service"],
},
{
id: "2",
label: "02",
title: "Fresh Ingredients",
items: [
"Farm to table",
"Organic produce",
"Ethical sourcing",
],
id: "2", label: "02", title: "Fresh Ingredients", items: [
"Farm to table", "Organic produce", "Ethical sourcing"],
},
{
id: "3",
label: "03",
title: "Elegant Ambiance",
items: [
"Modern decor",
"Sophisticated mood",
"Perfect lighting",
],
id: "3", label: "03", title: "Elegant Ambiance", items: [
"Modern decor", "Sophisticated mood", "Perfect lighting"],
},
]}
title="Why Choose Salt'n Pepper"
@@ -208,59 +139,20 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Signature",
name: "Classic Grilled Steak",
price: "$35.00",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-radish-meal-with-meat-inside-white-plate-table-food-meal-dinner-restaurant_140725-28248.jpg",
},
id: "1", brand: "Signature", name: "Classic Grilled Steak", price: "$35.00", rating: 5,
reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Df8c6dFPaT1Pz53XKlRj3KOEGJ/uploaded-1778662410303-1jsn3zha.jpg"},
{
id: "2",
brand: "Signature",
name: "Truffle Pasta",
price: "$28.00",
rating: 5,
reviewCount: "98",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-bolognese-tomato-sesame-parmesan-pepper-top-view_141793-3193.jpg",
},
id: "2", brand: "Signature", name: "Truffle Pasta", price: "$28.00", rating: 5,
reviewCount: "98", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Df8c6dFPaT1Pz53XKlRj3KOEGJ/uploaded-1778662410303-e3tnv8ls.jpg"},
{
id: "3",
brand: "Fresh",
name: "Garden Harvest Salad",
price: "$15.00",
rating: 4,
reviewCount: "85",
imageSrc: "http://img.b2bpic.net/free-photo/foie-gras-with-vegetable-salad_1203-9262.jpg",
},
id: "3", brand: "Fresh", name: "Garden Harvest Salad", price: "$15.00", rating: 4,
reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Df8c6dFPaT1Pz53XKlRj3KOEGJ/uploaded-1778662410303-ut20yzng.jpg"},
{
id: "4",
brand: "Special",
name: "Grilled Sea Bass",
price: "$42.00",
rating: 5,
reviewCount: "72",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-prawns-garnished-with-pickles-flowers_140725-1464.jpg",
},
id: "4", brand: "Special", name: "Grilled Sea Bass", price: "$42.00", rating: 5,
reviewCount: "72", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Df8c6dFPaT1Pz53XKlRj3KOEGJ/uploaded-1778662410303-bfljtxhu.jpg"},
{
id: "5",
brand: "Dessert",
name: "Chocolate Decadence",
price: "$12.00",
rating: 5,
reviewCount: "210",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-dessert-restaurant_23-2148018765.jpg",
},
{
id: "6",
brand: "Appetizer",
name: "Spiced Shrimp",
price: "$18.00",
rating: 4,
reviewCount: "65",
imageSrc: "http://img.b2bpic.net/free-photo/salmon-bruschetta-with-cucumber-mozzarella-dill-red-onion-dried-tomato-lime_141793-2269.jpg",
},
id: "5", brand: "Dessert", name: "Chocolate Decadence", price: "$12.00", rating: 5,
reviewCount: "210", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Df8c6dFPaT1Pz53XKlRj3KOEGJ/uploaded-1778662410303-79hzzjh7.jpg"},
]}
title="Explore Our Signature Menu"
description="Delicately curated dishes designed to tantalize your palate."
@@ -274,31 +166,16 @@ export default function LandingPage() {
useInvertedBackground={true}
metrics={[
{
id: "1",
value: "15+",
title: "Years of Excellence",
items: [
"Bahawalpur staple",
"Trusted name",
],
id: "1", value: "15+", title: "Years of Excellence", items: [
"Bahawalpur staple", "Trusted name"],
},
{
id: "2",
value: "50k+",
title: "Happy Guests",
items: [
"Serving daily",
"Highly recommended",
],
id: "2", value: "50k+", title: "Happy Guests", items: [
"Serving daily", "Highly recommended"],
},
{
id: "3",
value: "100+",
title: "Signature Recipes",
items: [
"Unique blend",
"Chef secret",
],
id: "3", value: "100+", title: "Signature Recipes", items: [
"Unique blend", "Chef secret"],
},
]}
title="A Legacy of Culinary Excellence"
@@ -313,40 +190,15 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah Khan",
handle: "@sarah_k",
testimonial: "Everything was perfect! Best steak in Bahawalpur.",
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
},
id: "1", name: "Sarah Khan", handle: "@sarah_k", testimonial: "Everything was perfect! Best steak in Bahawalpur.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg"},
{
id: "2",
name: "Omar Jamil",
handle: "@omarj",
testimonial: "Professional service and great ambiance.",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-pretty-stylish-smiling-woman-colorful-retro-vintage-american-50s-cafe-sitting-table-drinking-milk-shake-cocktail-wearing-pink-sunglasses-having-fun_285396-10740.jpg",
},
id: "2", name: "Omar Jamil", handle: "@omarj", testimonial: "Professional service and great ambiance.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-pretty-stylish-smiling-woman-colorful-retro-vintage-american-50s-cafe-sitting-table-drinking-milk-shake-cocktail-wearing-pink-sunglasses-having-fun_285396-10740.jpg"},
{
id: "3",
name: "Fatima Noor",
handle: "@fatiman",
testimonial: "A wonderful dining experience for our anniversary.",
imageSrc: "http://img.b2bpic.net/free-photo/man-talking-with-his-girlfriend-valentine-s-day-dinner_23-2148435801.jpg",
},
id: "3", name: "Fatima Noor", handle: "@fatiman", testimonial: "A wonderful dining experience for our anniversary.", imageSrc: "http://img.b2bpic.net/free-photo/man-talking-with-his-girlfriend-valentine-s-day-dinner_23-2148435801.jpg"},
{
id: "4",
name: "Hassan Raza",
handle: "@hrazzaq",
testimonial: "The staff are so friendly and the food is exquisite.",
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
},
id: "4", name: "Hassan Raza", handle: "@hrazzaq", testimonial: "The staff are so friendly and the food is exquisite.", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg"},
{
id: "5",
name: "Zoya Malik",
handle: "@zoyam",
testimonial: "I love the variety on the menu. High quality ingredients.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-waiter-talking-female-customer-writing-her-order-digital-tablet-bar_637285-2301.jpg",
},
id: "5", name: "Zoya Malik", handle: "@zoyam", testimonial: "I love the variety on the menu. High quality ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/happy-waiter-talking-female-customer-writing-her-order-digital-tablet-bar_637285-2301.jpg"},
]}
title="Voices of Our Patrons"
description="What our wonderful guests have to say."
@@ -359,20 +211,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "Do I need a reservation?",
content: "Yes, we highly recommend booking in advance, especially for weekend dining.",
},
id: "1", title: "Do I need a reservation?", content: "Yes, we highly recommend booking in advance, especially for weekend dining."},
{
id: "2",
title: "Are vegetarian options available?",
content: "Absolutely! Our menu features a variety of gourmet vegetarian dishes.",
},
id: "2", title: "Are vegetarian options available?", content: "Absolutely! Our menu features a variety of gourmet vegetarian dishes."},
{
id: "3",
title: "Do you host events?",
content: "Yes, we specialize in corporate and private events.",
},
id: "3", title: "Do you host events?", content: "Yes, we specialize in corporate and private events."},
]}
imageSrc="http://img.b2bpic.net/free-photo/dining-table-background-zoom-calls_23-2149684444.jpg"
mediaAnimation="slide-up"
@@ -386,8 +229,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Stay Connected"
title="Join Our Mailing List"
description="Sign up for exclusive offers and updates on special menu items."
@@ -400,33 +242,21 @@ export default function LandingPage() {
logoText="Salt'n Pepper"
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Menu",
href: "#products",
},
label: "Menu", href: "#products"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -435,4 +265,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}