Merge version_1 into main #2
231
src/app/page.tsx
231
src/app/page.tsx
@@ -12,7 +12,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Heart, Utensils, Wine, Zap } from "lucide-react";
|
||||
import { Heart, Utensils, Wine, Zap, Dumbbell, Gamepad2, Swords } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,49 +32,27 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Ene’s Kitchen"
|
||||
button={{
|
||||
text: "Reserve Now",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Reserve Now", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
logoText="Ene’s Kitchen"
|
||||
description="Where Luxury Meets Fun. Dining, Entertainment, Relaxation & Family Fun — All In One Destination."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Visit Today",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Book a Table", href: "#contact" },
|
||||
{ text: "Visit Today", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-3910.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-3910.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
@@ -87,7 +65,7 @@ export default function LandingPage() {
|
||||
description="Ene’s Kitchen is more than a restaurant; it's a curated lifestyle destination. From high-end dining and exotic drinks to family-focused entertainment like our kids' arcade, spa, and fitness gym, we redefine hospitality."
|
||||
subdescription="Whether you are planning a corporate retreat, a family hangout, or a romantic evening, we deliver an unforgettable experience of class and comfort."
|
||||
icon={Zap}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -99,64 +77,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Dining & Bar",
|
||||
description: "Gourmet meals and exotic cocktails in a high-end setting.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg",
|
||||
},
|
||||
title: "Dining & Bar", description: "Gourmet meals and exotic cocktails in a high-end setting.", media: { imageSrc: "http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg" },
|
||||
items: [
|
||||
{
|
||||
icon: Utensils,
|
||||
text: "Fine Dining",
|
||||
},
|
||||
{
|
||||
icon: Wine,
|
||||
text: "Premium Bar",
|
||||
},
|
||||
{ icon: Utensils, text: "Fine Dining" },
|
||||
{ icon: Wine, text: "Premium Bar" },
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-3910.jpg?_wi=2",
|
||||
imageAlt: "gourmet dining plating elegant",
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "Relaxation",
|
||||
description: "Unwind in our world-class spa or gym facilities.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-is-relaxing-spa-complex-with-sauna_169016-22729.jpg",
|
||||
},
|
||||
title: "Relaxation", description: "Unwind in our world-class spa or gym facilities.", media: { imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-is-relaxing-spa-complex-with-sauna_169016-22729.jpg" },
|
||||
items: [
|
||||
{
|
||||
icon: Heart,
|
||||
text: "Luxury Spa",
|
||||
},
|
||||
{
|
||||
icon: Dumbbell,
|
||||
text: "Modern Gym",
|
||||
},
|
||||
{ icon: Heart, text: "Luxury Spa" },
|
||||
{ icon: Dumbbell, text: "Modern Gym" },
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=2",
|
||||
imageAlt: "gourmet dining plating elegant",
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "Entertainment",
|
||||
description: "Gaming zones, pools, and arcades for endless fun.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-friends-looking-woman-playing-snooker-club_23-2148037596.jpg",
|
||||
},
|
||||
title: "Entertainment", description: "Gaming zones, pools, and arcades for endless fun.", media: { imageSrc: "http://img.b2bpic.net/free-photo/male-friends-looking-woman-playing-snooker-club_23-2148037596.jpg" },
|
||||
items: [
|
||||
{
|
||||
icon: Gamepad2,
|
||||
text: "PS5 Zone",
|
||||
},
|
||||
{
|
||||
icon: Swords,
|
||||
text: "Arcade",
|
||||
},
|
||||
{ icon: Gamepad2, text: "PS5 Zone" },
|
||||
{ icon: Swords, text: "Arcade" },
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-woman-portrait-street-outdoor-portrait-fashion-model_1296-737.jpg?_wi=1",
|
||||
imageAlt: "gourmet dining plating elegant",
|
||||
reverse: false
|
||||
},
|
||||
]}
|
||||
title="Premium Lifestyle Services"
|
||||
@@ -168,44 +110,21 @@ export default function LandingPage() {
|
||||
<ProductCardOne
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Poolside Vibes",
|
||||
price: "Lifestyle",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-woman-portrait-street-outdoor-portrait-fashion-model_1296-737.jpg?_wi=2",
|
||||
},
|
||||
id: "1", name: "Poolside Vibes", price: "Lifestyle", imageSrc: "http://img.b2bpic.net/free-photo/beauty-woman-portrait-street-outdoor-portrait-fashion-model_1296-737.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Exotic Drinks",
|
||||
price: "Bar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/iced-multivitamin-cocktail-with-orange-slices_140725-2140.jpg",
|
||||
},
|
||||
id: "2", name: "Exotic Drinks", price: "Bar", imageSrc: "http://img.b2bpic.net/free-photo/iced-multivitamin-cocktail-with-orange-slices_140725-2140.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Gaming Fun",
|
||||
price: "Play",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-view-women-playing-dancing-arcade_23-2148253103.jpg",
|
||||
},
|
||||
id: "3", name: "Gaming Fun", price: "Play", imageSrc: "http://img.b2bpic.net/free-photo/high-view-women-playing-dancing-arcade_23-2148253103.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Spa Luxury",
|
||||
price: "Relax",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-composition-with-thai-orchid-flowers-bath-accessories_169016-17361.jpg",
|
||||
},
|
||||
id: "4", name: "Spa Luxury", price: "Relax", imageSrc: "http://img.b2bpic.net/free-photo/spa-composition-with-thai-orchid-flowers-bath-accessories_169016-17361.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Family Dining",
|
||||
price: "Bistro",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-meat-with-fried-zucchini-crackers-human-hand-round-plate_176474-3088.jpg",
|
||||
},
|
||||
id: "5", name: "Family Dining", price: "Bistro", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-meat-with-fried-zucchini-crackers-human-hand-round-plate_176474-3088.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Nightlife",
|
||||
price: "Vibe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/drinking-bar-liquor-pub-vodka_1376-7.jpg",
|
||||
},
|
||||
id: "6", name: "Nightlife", price: "Vibe", imageSrc: "http://img.b2bpic.net/free-photo/drinking-bar-liquor-pub-vodka_1376-7.jpg"},
|
||||
]}
|
||||
title="Experience Ene’s Kitchen"
|
||||
description="A glimpse into our luxurious offerings and vibrant atmosphere."
|
||||
@@ -218,55 +137,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah A.",
|
||||
date: "Jan 2024",
|
||||
title: "Incredible Vibes",
|
||||
quote: "The atmosphere is unmatched in Abuja. Perfect for a family Saturday.",
|
||||
tag: "Family",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/male-local-traveler-with-camera_23-2149016703.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-chatting-table_23-2149213369.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah A.", date: "Jan 2024", title: "Incredible Vibes", quote: "The atmosphere is unmatched in Abuja. Perfect for a family Saturday.", tag: "Family", avatarSrc: "http://img.b2bpic.net/free-photo/male-local-traveler-with-camera_23-2149016703.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-chatting-table_23-2149213369.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mike O.",
|
||||
date: "Dec 2023",
|
||||
title: "Top Tier",
|
||||
quote: "Best cocktails in the city. The service is exceptional every single time.",
|
||||
tag: "Drinks",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-eating-laughing-restaurant_23-2148006702.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-bartender-preparing-drink_23-2150346969.jpg",
|
||||
},
|
||||
id: "2", name: "Mike O.", date: "Dec 2023", title: "Top Tier", quote: "Best cocktails in the city. The service is exceptional every single time.", tag: "Drinks", avatarSrc: "http://img.b2bpic.net/free-photo/man-eating-laughing-restaurant_23-2148006702.jpg", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bartender-preparing-drink_23-2150346969.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chidi E.",
|
||||
date: "Nov 2023",
|
||||
title: "Hidden Gem",
|
||||
quote: "So many options! We swam, played pool, and then grabbed dinner. Loved it.",
|
||||
tag: "Fun",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-near-skyscrapers-sunglasses_158538-20763.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-asian-women-happy-smile-relax-around-outdoor-swimming-pool-hotel-resort_74190-9513.jpg",
|
||||
},
|
||||
id: "3", name: "Chidi E.", date: "Nov 2023", title: "Hidden Gem", quote: "So many options! We swam, played pool, and then grabbed dinner. Loved it.", tag: "Fun", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-near-skyscrapers-sunglasses_158538-20763.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-asian-women-happy-smile-relax-around-outdoor-swimming-pool-hotel-resort_74190-9513.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Lola F.",
|
||||
date: "Oct 2023",
|
||||
title: "Luxury Standard",
|
||||
quote: "The spa facilities are pristine. Such a relaxing and luxurious day out.",
|
||||
tag: "Spa",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-warm-white-hoodie-home-kitchen-starts-her-day-with-cup-coffee_343596-7220.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/living-room-interior-design-zoom-calls_23-2149684494.jpg",
|
||||
},
|
||||
id: "4", name: "Lola F.", date: "Oct 2023", title: "Luxury Standard", quote: "The spa facilities are pristine. Such a relaxing and luxurious day out.", tag: "Spa", avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-warm-white-hoodie-home-kitchen-starts-her-day-with-cup-coffee_343596-7220.jpg", imageSrc: "http://img.b2bpic.net/free-photo/living-room-interior-design-zoom-calls_23-2149684494.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "David K.",
|
||||
date: "Sep 2023",
|
||||
title: "Game On",
|
||||
quote: "The PS5 zone is a hit for the boys. We spend hours here effortlessly.",
|
||||
tag: "Games",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/stylish-man-city-looking-away_197531-33448.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bright-colorful-neon-background_23-2150689404.jpg",
|
||||
},
|
||||
id: "5", name: "David K.", date: "Sep 2023", title: "Game On", quote: "The PS5 zone is a hit for the boys. We spend hours here effortlessly.", tag: "Games", avatarSrc: "http://img.b2bpic.net/free-photo/stylish-man-city-looking-away_197531-33448.jpg", imageSrc: "http://img.b2bpic.net/free-photo/bright-colorful-neon-background_23-2150689404.jpg"},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Unforgettable experiences at Ene’s Kitchen."
|
||||
@@ -278,14 +157,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Lounge Life",
|
||||
"Luxury Abuja",
|
||||
"Fitness Pro",
|
||||
"Kids World",
|
||||
"Bistro Masters",
|
||||
"City Vibes",
|
||||
"Hospitality Club",
|
||||
]}
|
||||
"Lounge Life", "Luxury Abuja", "Fitness Pro", "Kids World", "Bistro Masters", "City Vibes", "Hospitality Club"]}
|
||||
title="Our Trusted Partnerships"
|
||||
description="Celebrating milestones with the best brands."
|
||||
/>
|
||||
@@ -296,20 +168,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer private event bookings?",
|
||||
content: "Yes, we specialize in birthday parties, corporate events, and private dinners.",
|
||||
},
|
||||
id: "1", title: "Do you offer private event bookings?", content: "Yes, we specialize in birthday parties, corporate events, and private dinners."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Is the pool open to non-members?",
|
||||
content: "Our pool is open to all visitors with a daily entry pass.",
|
||||
},
|
||||
id: "2", title: "Is the pool open to non-members?", content: "Our pool is open to all visitors with a daily entry pass."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is Ene’s Kitchen family-friendly?",
|
||||
content: "We have dedicated kids arcades, playgrounds, and family-safe menu options.",
|
||||
},
|
||||
id: "3", title: "Is Ene’s Kitchen family-friendly?", content: "We have dedicated kids arcades, playgrounds, and family-safe menu options."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -319,9 +182,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Visit Us"
|
||||
title="Your Next Best Day Starts Here"
|
||||
description="Book a table, reserve your events, or just drop by for an unforgettable experience."
|
||||
@@ -332,17 +193,11 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Ene’s Kitchen"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user