Merge version_1 into main #1
@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -25,26 +25,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="SmokyMan Bistro"
|
||||
/>
|
||||
@@ -54,29 +39,12 @@ export default function LandingPage() {
|
||||
<ProductCardFour
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "g1",
|
||||
name: "Smoking Process",
|
||||
price: "Visual",
|
||||
variant: "Smoky",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-gulas-dish-arrangement_23-2149072607.jpg",
|
||||
},
|
||||
{
|
||||
id: "g2",
|
||||
name: "Cozy Seating",
|
||||
price: "Ambience",
|
||||
variant: "Vibe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-wicker-lamps-ceiling-inside-building_181624-47099.jpg",
|
||||
},
|
||||
{
|
||||
id: "g3",
|
||||
name: "Signature Dish",
|
||||
price: "Culinary",
|
||||
variant: "Taste",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-burgers-us-labor-day_23-2150378713.jpg",
|
||||
},
|
||||
{ id: "g1", name: "Smoking Process", price: "Visual", variant: "Smoky", imageSrc: "http://img.b2bpic.net/free-photo/delicious-gulas-dish-arrangement_23-2149072607.jpg" },
|
||||
{ id: "g2", name: "Cozy Seating", price: "Ambience", variant: "Vibe", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-wicker-lamps-ceiling-inside-building_181624-47099.jpg" },
|
||||
{ id: "g3", name: "Signature Dish", price: "Culinary", variant: "Taste", imageSrc: "http://img.b2bpic.net/free-photo/delicious-burgers-us-labor-day_23-2150378713.jpg" },
|
||||
]}
|
||||
title="A Visual Feast"
|
||||
description="Browse our latest dishes and vibrant bistro atmosphere."
|
||||
@@ -92,13 +60,7 @@ export default function LandingPage() {
|
||||
description="Read more about our smoking process."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
title: "Mastering the Wood",
|
||||
excerpt: "The secret to flavor.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg",
|
||||
authorName: "Head Chef",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-eating-bistro_23-2149366452.jpg",
|
||||
date: "Oct 2024",
|
||||
id: "b1", title: "Mastering the Wood", excerpt: "The secret to flavor.", imageSrc: "http://img.b2bpic.net/free-photo/rustic-restaurant-furniture-restaurant_53876-16490.jpg", authorName: "Head Chef", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-eating-bistro_23-2149366452.jpg", date: "Oct 2024", category: "Cooking"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -109,29 +71,15 @@ export default function LandingPage() {
|
||||
logoText="SmokyMan Bistro"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Our Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Our Services", href: "/services" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
188
src/app/page.tsx
188
src/app/page.tsx
@@ -29,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="SmokyMan Bistro"
|
||||
/>
|
||||
@@ -56,66 +41,26 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Authentic Smoked Meats in the Heart of Chennai"
|
||||
description="Tired of generic fast food? Experience the soul-satisfying tenderness of authentic slow-smoked brisket and pulled meats at SmokyMan Bistro. Hand-crafted, juicy, and flavor-packed."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-hands-holding-food-plates_23-2149617139.jpg",
|
||||
alt: "Customer enjoying meal",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/roasted-meat-with-glass-wine_140725-1849.jpg",
|
||||
alt: "Roasted meat with glass of wine",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lamb-ribs-kebab-served-with-grilled-potatoes-salad_140725-1564.jpg",
|
||||
alt: "Lamb ribs kebab served with grilled potatoes and salad",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-eggplant_140725-10937.jpg",
|
||||
alt: "grilled meat cutlet with eggplant",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-taking-marinated-beef-served-with-onion-sumac-herbs_140725-2691.jpg",
|
||||
alt: "Woman taking marinated beef served with onion, sumac and herbs",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/high-angle-hands-holding-food-plates_23-2149617139.jpg", alt: "Customer enjoying meal" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/roasted-meat-with-glass-wine_140725-1849.jpg", alt: "Roasted meat with glass of wine" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/lamb-ribs-kebab-served-with-grilled-potatoes-salad_140725-1564.jpg", alt: "Lamb ribs kebab served with grilled potatoes and salad" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-eggplant_140725-10937.jpg", alt: "grilled meat cutlet with eggplant" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-taking-marinated-beef-served-with-onion-sumac-herbs_140725-2691.jpg", alt: "Woman taking marinated beef served with onion, sumac and herbs" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+914400000000",
|
||||
},
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#",
|
||||
},
|
||||
{ text: "Call Now", href: "tel:+914400000000" },
|
||||
{ text: "Get a Free Quote", href: "#" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Slow Smoked for 12 Hours",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Locally Sourced Meats",
|
||||
icon: Beef,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Authentic Chennai Spice",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Signature BBQ Sauce",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Friendly Atmosphere",
|
||||
},
|
||||
{ type: "text", text: "Slow Smoked for 12 Hours" },
|
||||
{ type: "text-icon", text: "Locally Sourced Meats", icon: Beef },
|
||||
{ type: "text", text: "Authentic Chennai Spice" },
|
||||
{ type: "text-icon", text: "Signature BBQ Sauce", icon: Flame },
|
||||
{ type: "text", text: "Family Friendly Atmosphere" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -129,34 +74,10 @@ export default function LandingPage() {
|
||||
title="Our Bistro by the Numbers"
|
||||
description="We put passion into every plate, resulting in these impressive milestones."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "12+",
|
||||
title: "Hours Smoked",
|
||||
description: "Slow and steady.",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "50+",
|
||||
title: "Menu Items",
|
||||
description: "Diverse culinary delights.",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "1k+",
|
||||
title: "Happy Diners",
|
||||
description: "Counting every smile.",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
value: "5*",
|
||||
title: "Avg Rating",
|
||||
description: "Based on love.",
|
||||
icon: Star,
|
||||
},
|
||||
{ id: "m1", value: "12+", title: "Hours Smoked", description: "Slow and steady.", icon: Clock },
|
||||
{ id: "m2", value: "50+", title: "Menu Items", description: "Diverse culinary delights.", icon: Flame },
|
||||
{ id: "m3", value: "1k+", title: "Happy Diners", description: "Counting every smile.", icon: Users },
|
||||
{ id: "m4", value: "5*", title: "Avg Rating", description: "Based on love.", icon: Star },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -169,26 +90,10 @@ export default function LandingPage() {
|
||||
description="Everything you need to know about dining at SmokyMan."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do I need a reservation?",
|
||||
content: "We recommend it on weekends.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you offer catering?",
|
||||
content: "Yes, for corporate and private events.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Are your meats Halal?",
|
||||
content: "Yes, all our meats are certified.",
|
||||
},
|
||||
{
|
||||
id: "q4",
|
||||
title: "Do you have parking?",
|
||||
content: "Ample parking available at the Bhoomi building.",
|
||||
},
|
||||
{ id: "q1", title: "Do I need a reservation?", content: "We recommend it on weekends." },
|
||||
{ id: "q2", title: "Do you offer catering?", content: "Yes, for corporate and private events." },
|
||||
{ id: "q3", title: "Are your meats Halal?", content: "Yes, all our meats are certified." },
|
||||
{ id: "q4", title: "Do you have parking?", content: "Ample parking available at the Bhoomi building." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -200,12 +105,7 @@ export default function LandingPage() {
|
||||
title="Trusted Partners & Community"
|
||||
description="Proudly serving the Chennai community with passion."
|
||||
names={[
|
||||
"Zomato Foodies",
|
||||
"Swiggy Bites",
|
||||
"Chennai Food Guide",
|
||||
"Bistro Lovers",
|
||||
"Local BBQ Club",
|
||||
]}
|
||||
"Zomato Foodies", "Swiggy Bites", "Chennai Food Guide", "Bistro Lovers", "Local BBQ Club"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -214,6 +114,14 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="What Our Customers Say"
|
||||
description="Authentic flavors that keep customers coming back for more."
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Ravi P.", content: "The best brisket in Chennai. Hands down.", rating: 5 },
|
||||
{ id: "t2", name: "Sneha K.", content: "The pulled pork platter is a game changer!", rating: 5 },
|
||||
{ id: "t3", name: "Vikram S.", content: "Great atmosphere and even better service.", rating: 5 }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -222,29 +130,15 @@ export default function LandingPage() {
|
||||
logoText="SmokyMan Bistro"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Our Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
title: "Menu", items: [
|
||||
{ label: "Our Services", href: "/services" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user