Merge version_1 into main #2
312
src/app/page.tsx
312
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { Car, Leaf, ShieldCheck, Star, Tag, Users, Utensils } from "lucide-react";
|
||||
import { Car, Leaf, ShieldCheck, Star, Users, Utensils } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,124 +32,46 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="The Food Street"
|
||||
button={{ text: "Order Now", href: "#products" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Authentic Flavors at Bestech Square"
|
||||
description="Experience the heartbeat of street food. From aromatic Masala Dosa to spicy Pav Bhaji, we serve joy on every plate."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Navneet Singh",
|
||||
handle: "@navneet",
|
||||
testimonial: "A brand new outlet, absolutely worth a visit!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187187.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Rajveer Talib",
|
||||
handle: "@rajveer",
|
||||
testimonial: "Staff is so kind and professional. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/celebration-party-holidays-concept-oh-gosh-its-disgusting-portrait-reluctant-displeased-y_1258-109519.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Hardeep Khokher",
|
||||
handle: "@hardeep",
|
||||
testimonial: "Best service and food quality in the entire mall.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Sandeep Kumar",
|
||||
handle: "@sandeep",
|
||||
testimonial: "Authentic taste that reminds me of home.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-with-brunette-hair-using-phone_273609-15605.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Anjali Devi",
|
||||
handle: "@anjali",
|
||||
testimonial: "Quick service and great flavor variety.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663869.jpg?_wi=1",
|
||||
},
|
||||
{ name: "Navneet Singh", handle: "@navneet", testimonial: "A brand new outlet, absolutely worth a visit!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187187.jpg" },
|
||||
{ name: "Rajveer Talib", handle: "@rajveer", testimonial: "Staff is so kind and professional. Highly recommended!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/celebration-party-holidays-concept-oh-gosh-its-disgusting-portrait-reluctant-displeased-y_1258-109519.jpg" },
|
||||
{ name: "Hardeep Khokher", handle: "@hardeep", testimonial: "Best service and food quality in the entire mall.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg" },
|
||||
{ name: "Sandeep Kumar", handle: "@sandeep", testimonial: "Authentic taste that reminds me of home.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-with-brunette-hair-using-phone_273609-15605.jpg" },
|
||||
{ name: "Anjali Devi", handle: "@anjali", testimonial: "Quick service and great flavor variety.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663869.jpg" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-bean-soup-called-merci-with-seasonings-white-surface-soup-meal-food-vegetable_140725-74422.jpg"
|
||||
imageAlt="Authentic Indian Street Food at Bestech Square"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-friends-date_23-2149073428.jpg",
|
||||
alt: "Happy customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg",
|
||||
alt: "Happy customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-women-with-delicious-food_23-2149250117.jpg",
|
||||
alt: "Happy customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-friends-with-delicious-food_23-2149073434.jpg",
|
||||
alt: "Happy customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lifestyle-friends-eating-pizzas-outdoors_52683-100723.jpg",
|
||||
alt: "Happy customer 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-smiley-friends-date_23-2149073428.jpg", alt: "Happy customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg", alt: "Happy customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-women-with-delicious-food_23-2149250117.jpg", alt: "Happy customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-friends-with-delicious-food_23-2149073434.jpg", alt: "Happy customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/lifestyle-friends-eating-pizzas-outdoors_52683-100723.jpg", alt: "Happy customer 5" },
|
||||
]}
|
||||
avatarText="Loved by 1000+ foodies"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Hygienic Kitchen",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fresh Ingredients",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fast Delivery",
|
||||
icon: Car,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Great Prices",
|
||||
icon: Tag,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Authentic Taste",
|
||||
icon: Utensils,
|
||||
},
|
||||
{ type: "text-icon", text: "Hygienic Kitchen", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "Fresh Ingredients", icon: Leaf },
|
||||
{ type: "text-icon", text: "Fast Delivery", icon: Car },
|
||||
{ type: "text-icon", text: "Great Prices", icon: Tag },
|
||||
{ type: "text-icon", text: "Authentic Taste", icon: Utensils },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -158,15 +80,8 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Welcome to The Food Street",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/happy-african-american-woman-her-female-friend-serving-food-dining-table-while-their-boyfriends-are-drinking-wine-background_637285-5846.jpg",
|
||||
alt: "About our restaurant",
|
||||
},
|
||||
{ type: "text", content: "Welcome to The Food Street" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/happy-african-american-woman-her-female-friend-serving-food-dining-table-while-their-boyfriends-are-drinking-wine-background_637285-5846.jpg", alt: "About our restaurant" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -177,21 +92,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Star,
|
||||
title: "Hygiene 10/10",
|
||||
description: "We maintain the highest standards of cleanliness.",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Polite Staff",
|
||||
description: "Our team is always welcoming and ready to serve.",
|
||||
},
|
||||
{
|
||||
icon: Utensils,
|
||||
title: "Diverse Menu",
|
||||
description: "Wide variety of North Indian and Chinese.",
|
||||
},
|
||||
{ icon: Star, title: "Hygiene 10/10", description: "We maintain the highest standards of cleanliness." },
|
||||
{ icon: Users, title: "Polite Staff", description: "Our team is always welcoming and ready to serve." },
|
||||
{ icon: Utensils, title: "Diverse Menu", description: "Wide variety of North Indian and Chinese." },
|
||||
]}
|
||||
title="Why Foodies Love Us"
|
||||
description="We are committed to delivering the best street food experience in SAS Nagar."
|
||||
@@ -205,60 +108,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Veg",
|
||||
name: "Masala Dosa",
|
||||
price: "₹200",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-street-food-fest_23-2151543755.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Veg",
|
||||
name: "Chaat Items",
|
||||
price: "₹150",
|
||||
rating: 4,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-seasonings-inside-pots-salt-pepper-with-fresh-squashes-meat-rolls-dark-purple-surface_140725-38883.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Veg",
|
||||
name: "Cheese Pav Bhaji",
|
||||
price: "₹250",
|
||||
rating: 5,
|
||||
reviewCount: "200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-holding-fried-chicken-wrap-with-vegetables_181624-56061.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Veg",
|
||||
name: "Chinese Combo",
|
||||
price: "₹300",
|
||||
rating: 4,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-chicken-noodle-bowl-dark-background_84443-72375.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Veg",
|
||||
name: "Paneer Cholle Bhutra",
|
||||
price: "₹280",
|
||||
rating: 5,
|
||||
reviewCount: "150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086073.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Veg",
|
||||
name: "Special Veg Thali",
|
||||
price: "₹350",
|
||||
rating: 5,
|
||||
reviewCount: "110",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-food-arrangement_23-2148821546.jpg",
|
||||
},
|
||||
{ id: "1", brand: "Veg", name: "Masala Dosa", price: "₹200", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/delicious-street-food-fest_23-2151543755.jpg" },
|
||||
{ id: "2", brand: "Veg", name: "Chaat Items", price: "₹150", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-seasonings-inside-pots-salt-pepper-with-fresh-squashes-meat-rolls-dark-purple-surface_140725-38883.jpg" },
|
||||
{ id: "3", brand: "Veg", name: "Cheese Pav Bhaji", price: "₹250", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/person-holding-fried-chicken-wrap-with-vegetables_181624-56061.jpg" },
|
||||
{ id: "4", brand: "Veg", name: "Chinese Combo", price: "₹300", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/delicious-chicken-noodle-bowl-dark-background_84443-72375.jpg" },
|
||||
{ id: "5", brand: "Veg", name: "Paneer Cholle Bhutra", price: "₹280", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086073.jpg" },
|
||||
{ id: "6", brand: "Veg", name: "Special Veg Thali", price: "₹350", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-food-arrangement_23-2148821546.jpg" },
|
||||
]}
|
||||
title="Our Popular Picks"
|
||||
description="Discover the most loved dishes at The Food Street."
|
||||
@@ -272,46 +127,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Navneet Singh",
|
||||
role: "Diner",
|
||||
company: "Local Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187187.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rajveer Talib",
|
||||
role: "Diner",
|
||||
company: "Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/celebration-party-holidays-concept-oh-gosh-its-disgusting-portrait-reluctant-displeased-y_1258-109519.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Hardeep Khokher",
|
||||
role: "Diner",
|
||||
company: "Loyal Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sandeep Kumar",
|
||||
role: "Diner",
|
||||
company: "Local Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-with-brunette-hair-using-phone_273609-15605.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Anjali Devi",
|
||||
role: "Diner",
|
||||
company: "Family Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663869.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Navneet Singh", role: "Diner", company: "Local Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187187.jpg" },
|
||||
{ id: "2", name: "Rajveer Talib", role: "Diner", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/celebration-party-holidays-concept-oh-gosh-its-disgusting-portrait-reluctant-displeased-y_1258-109519.jpg" },
|
||||
{ id: "3", name: "Hardeep Khokher", role: "Diner", company: "Loyal Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-eating-dutch-waffles-street-near-cafe-street-food-holland_1321-1777.jpg" },
|
||||
{ id: "4", name: "Sandeep Kumar", role: "Diner", company: "Local Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-with-brunette-hair-using-phone_273609-15605.jpg" },
|
||||
{ id: "5", name: "Anjali Devi", role: "Diner", company: "Family Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663869.jpg" },
|
||||
]}
|
||||
title="Voices of Our Guests"
|
||||
description="What our happy customers have to say about their experience."
|
||||
@@ -322,13 +142,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Zomato",
|
||||
"Swiggy",
|
||||
"Bestech Mall",
|
||||
"Food Critics",
|
||||
"Google Reviews",
|
||||
]}
|
||||
names={["Zomato", "Swiggy", "Bestech Mall", "Food Critics", "Google Reviews"]}
|
||||
title="Trusted by Thousands"
|
||||
description="We are proud to serve our community at Bestech Square."
|
||||
/>
|
||||
@@ -339,21 +153,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are your operating hours?",
|
||||
content: "We are open daily until 11:00 PM.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Yes, we offer both takeaway and delivery services.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is seating available?",
|
||||
content: "Yes, we provide comfortable dine-in facilities.",
|
||||
},
|
||||
{ id: "1", title: "What are your operating hours?", content: "We are open daily until 11:00 PM." },
|
||||
{ id: "2", title: "Do you offer delivery?", content: "Yes, we offer both takeaway and delivery services." },
|
||||
{ id: "3", title: "Is seating available?", content: "Yes, we provide comfortable dine-in facilities." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common queries about our restaurant."
|
||||
@@ -365,9 +167,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Visit Us"
|
||||
title="Find Us at Bestech Square"
|
||||
description="Located in SAS Nagar, Bestech Square Mall, Sector 66."
|
||||
@@ -383,29 +183,15 @@ export default function LandingPage() {
|
||||
logoText="The Food Street"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Menu", href: "#products" },
|
||||
{ label: "About", href: "#about" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#testimonials",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
title: "Social", items: [
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user