15 Commits

Author SHA1 Message Date
a74f708920 Update src/app/menu/page.tsx 2026-05-12 20:39:17 +00:00
d9ee8998dc Update src/app/menu/page.tsx 2026-05-12 20:38:50 +00:00
5c9350c581 Update src/app/layout.tsx 2026-05-12 20:38:50 +00:00
9f1ff29bd8 Update src/app/menu/page.tsx 2026-05-12 20:38:25 +00:00
1ae5130ac3 Merge version_3 into main
Merge version_3 into main
2026-05-12 20:30:49 +00:00
142acadc03 Update src/app/menu/page.tsx 2026-05-12 20:30:46 +00:00
7bc3d90556 Merge version_3 into main
Merge version_3 into main
2026-05-12 20:30:22 +00:00
eb15506e86 Update src/app/menu/page.tsx 2026-05-12 20:30:19 +00:00
14ef0769fa Merge version_3 into main
Merge version_3 into main
2026-05-12 20:29:57 +00:00
bf290c52cd Update src/app/menu/page.tsx 2026-05-12 20:29:54 +00:00
5ee11ad143 Merge version_2 into main
Merge version_2 into main
2026-05-12 20:26:06 +00:00
ebd4116386 Update src/app/page.tsx 2026-05-12 20:26:02 +00:00
11cd7b4599 Merge version_2 into main
Merge version_2 into main
2026-05-12 20:25:34 +00:00
3efe993447 Update src/app/page.tsx 2026-05-12 20:25:31 +00:00
4b38d7d2fa Merge version_1 into main
Merge version_1 into main
2026-05-12 20:04:33 +00:00
3 changed files with 78 additions and 29 deletions

View File

@@ -11,8 +11,8 @@ import { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'The Wisemen Restaurant & Bar | Fine Dining in South Africa', title: 'Menu | The Wisemen',
description: 'Experience sophisticated fine dining at The Wisemen. Luxury cuisine, exquisite wine selection, and elegant atmosphere.', description: 'Discover our culinary selection at The Wisemen.',
openGraph: { openGraph: {
"title": "The Wisemen Restaurant & Bar", "title": "The Wisemen Restaurant & Bar",
"description": "Experience sophisticated fine dining.", "description": "Experience sophisticated fine dining.",

View File

@@ -2,12 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Coffee, Instagram, Twitter, Facebook } from 'lucide-react';
export default function LandingPage() { export default function MenuPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
@@ -23,7 +24,7 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarStyleApple
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Menu", id: "/menu" }, { name: "Menu", id: "/menu" },
@@ -31,48 +32,49 @@ export default function LandingPage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]} ]}
brandName="THE WISEMEN" brandName="THE WISEMEN"
button={{ text: "Reserve", href: "/reservations" }}
/> />
</div> </div>
<div id="feature" data-section="feature"> <div id="product" data-section="product">
<FeatureCardTwentyNine <ProductCardThree
title="Our Culinary Selection"
description="Discover our curated menu, featuring locally sourced ingredients and masterfully crafted flavors."
tag="Daily Menu"
tagIcon={Coffee}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="split"
gridVariant="uniform-all-items-equal" gridVariant="three-columns-all-equal-width"
useInvertedBackground={false} useInvertedBackground={false}
title="Our Signature Dishes" products={[
description="Savor the flavors of our most cherished recipes." { id: "p1", name: "Signature Steak", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-sauce-spicy-pepper-zucchini-tomatoes_140725-10844.jpg" },
features={[ { id: "p2", name: "Chocolate Delight", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg" },
{ title: "Signature Steak", description: "Prime aged beef with seasonal herbs.", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-sauce-spicy-pepper-zucchini-tomatoes_140725-10844.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/chef-showing-his-fine-cuisine-professional-food-decoration_482257-10348.jpg", buttonText: "View Dish" }, { id: "p3", name: "Signature Cocktail", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-blond-hair-holding-cocktail_273609-15687.jpg" }
{ title: "Delicate Dessert", description: "Masterfully crafted chocolate delights.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg", buttonText: "View Dessert" },
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
title="Inquire About Menus" title="Inquire About Menus"
description="Need information regarding dietary restrictions?" description="Need information regarding dietary restrictions?"
inputs={[ buttons={[{ text: "Submit Inquiry" }]}
{ name: "name", type: "text", placeholder: "Name" }, tag="Contact"
{ name: "message", type: "text", placeholder: "Your message" }, background={{ variant: "plain" }}
]}
imageSrc="http://img.b2bpic.net/free-photo/blurred-restaurant-with-vintage-sofa_1203-557.jpg"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterCard
logoText="THE WISEMEN" logoText="THE WISEMEN"
columns={[ socialLinks={[
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] }, { icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }] }, { icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -9,6 +9,9 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import { Calendar, Target } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -71,6 +74,50 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="plan-event" data-section="plan-event">
<FeatureCardMedia
title="Plan Your Event"
description="Tailored service for your special occasions."
tag="Event Planning"
tagIcon={Calendar}
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ id: "p1", title: "Corporate Events", description: "Professional spaces for business gatherings.", tag: "Professional" },
{ id: "p2", title: "Intimate Dinners", description: "Exclusive setups for close groups.", tag: "Exclusive" }
]}
/>
</div>
<div id="campaign" data-section="campaign">
<FeatureCardMedia
title="Custom Campaigns"
description="Unique promotional experiences for your brand."
tag="Custom"
tagIcon={Target}
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ id: "c1", title: "Brand Integration", description: "Showcase your vision.", tag: "Growth" }
]}
/>
</div>
<div id="service-hub" data-section="service-hub">
<PricingCardNine
title="Service Hub"
description="Centralized access to our hospitality services."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "s1", title: "Standard Concierge", price: "Custom", period: "on-request", features: ["Reservation Assist", "Custom Menu Planning", "Event Booking"], button: { text: "Inquire" } }
]}
/>
</div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardTwentyNine <FeatureCardTwentyNine
animationType="slide-up" animationType="slide-up"