224 lines
13 KiB
TypeScript
224 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
|
|
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import { Award, Leaf, Utensils, Flame, ChefHat, Mail } from "lucide-react";
|
|
|
|
export default function ChefPortfolio() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="pill"
|
|
contentWidth="compact"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="outline"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Chef"
|
|
navItems={[
|
|
{ name: "About", id: "about" },
|
|
{ name: "Dishes", id: "dishes" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
]}
|
|
button={{
|
|
text: "Book Now", href: "contact"
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplit
|
|
title="Culinary Mastery Elevated"
|
|
description="Experience exceptional dining through bespoke catering, private chef services, and innovative cuisine crafted with precision and passion"
|
|
tag="Fine Dining"
|
|
tagIcon={ChefHat}
|
|
background={{ variant: "glowing-orb" }}
|
|
buttons={[
|
|
{ text: "Book Your Chef", href: "contact" },
|
|
{ text: "View Menu", href: "dishes" },
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg?_wi=1"
|
|
imageAlt="Professional chef at work"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
tagAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
title="About the Chef"
|
|
description="With over 15 years of experience in Michelin-starred kitchens across Europe and North America, I bring unparalleled expertise to every culinary endeavor"
|
|
tag="Our Story"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
bulletPoints={[
|
|
{
|
|
title: "Trained Excellence", description: "Apprenticed under world-renowned chefs in Paris, Barcelona, and Copenhagen", icon: Award,
|
|
},
|
|
{
|
|
title: "Seasonal Innovation", description: "Specializing in farm-to-table cuisine with locally sourced, premium ingredients", icon: Leaf,
|
|
},
|
|
{
|
|
title: "Bespoke Services", description: "Customized menus tailored to your preferences, dietary needs, and culinary desires", icon: Utensils,
|
|
},
|
|
{
|
|
title: "Passion Driven", description: "Every dish reflects commitment to taste, presentation, and the art of gastronomy", icon: Flame,
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/smiling-young-male-cook-wearing-chef-uniform-glasses-isolated-white-wall_141793-78416.jpg"
|
|
imageAlt="Chef portrait"
|
|
imagePosition="left"
|
|
mediaAnimation="opacity"
|
|
tagAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="dishes" data-section="dishes">
|
|
<ProductCardOne
|
|
title="Signature Dishes"
|
|
description="Explore our chef's most celebrated creations, each a masterpiece of flavor and artistry"
|
|
tag="Featured"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
gridVariant="three-columns-all-equal-width"
|
|
products={[
|
|
{
|
|
id: "1", name: "Pan-Seared Diver Scallops", price: "Market Price", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-caviar-shrimps_140725-6375.jpg?_wi=1", imageAlt: "Pan-seared scallops with sauce"
|
|
},
|
|
{
|
|
id: "2", name: "Prime Grass-Fed Ribeye", price: "Market Price", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-roulet-with-potato-balls-sauce_140725-7314.jpg?_wi=1", imageAlt: "Premium steak presentation"
|
|
},
|
|
{
|
|
id: "3", name: "Dark Chocolate Soufflé", price: "Upon Request", imageSrc: "http://img.b2bpic.net/free-photo/side-view-souffle-cake-with-chocolate-berry-jelly-whipped-cream-strawberry-chocolate-chips-plate_141793-3681.jpg?_wi=1", imageAlt: "Elegant chocolate dessert"
|
|
},
|
|
]}
|
|
tagAnimation="blur-reveal"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwentyFour
|
|
title="Services & Specialties"
|
|
description="From intimate dinners to grand celebrations, discover the range of culinary services tailored to your needs"
|
|
tag="What We Offer"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
animationType="slide-up"
|
|
features={[
|
|
{
|
|
id: "1", title: "Private Chef Services", author: "Personalized Dining", description: "Dedicated culinary expertise for your home, preparing multi-course meals customized to your palate", tags: ["Dining", "Private"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg?_wi=2", imageAlt: "Private chef service"
|
|
},
|
|
{
|
|
id: "2", title: "Event Catering", author: "Elevated Celebrations", description: "Full-service catering for weddings, corporate events, and intimate gatherings with exquisite cuisine", tags: ["Events", "Catering"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-caviar-shrimps_140725-6375.jpg?_wi=2", imageAlt: "Catered event"
|
|
},
|
|
{
|
|
id: "3", title: "Menu Consulting", author: "Culinary Vision", description: "Expert guidance in menu development, wine pairings, and dietary accommodations for any occasion", tags: ["Consulting", "Planning"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-roulet-with-potato-balls-sauce_140725-7314.jpg?_wi=2", imageAlt: "Menu planning"
|
|
},
|
|
]}
|
|
tagAnimation="blur-reveal"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardFive
|
|
title="Client Testimonials"
|
|
description="Hear from those who have experienced our culinary excellence firsthand"
|
|
tag="Reviews"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Sarah Mitchell, CEO of Mitchell Enterprises", date: "Date: October 2024", title: "A transformative culinary experience", quote: "The private chef service was absolutely exceptional. Every course was a revelation, expertly executed with impeccable attention to detail. Our guests are still talking about the meal.", tag: "Private Dining", avatarSrc: "http://img.b2bpic.net/free-photo/horizontal-portrait-beautiful-fashionable-teenage-girl-with-fair-hair_176532-8114.jpg", avatarAlt: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-caviar-shrimps_140725-6375.jpg?_wi=3", imageAlt: "Plated dish"
|
|
},
|
|
{
|
|
id: "2", name: "James Richardson, Wedding Planner", date: "Date: September 2024", title: "Elevated our wedding catering", quote: "Working with the chef for our client's wedding was seamless. The innovative menu, flawless execution, and professional team made it truly memorable.", tag: "Event Catering", avatarSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-with-arms-crossed_1098-58.jpg", avatarAlt: "James Richardson", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-roulet-with-potato-balls-sauce_140725-7314.jpg?_wi=3", imageAlt: "Wedding plated course"
|
|
},
|
|
{
|
|
id: "3", name: "Emma Chen, Corporate Events Director", date: "Date: August 2024", title: "Culinary excellence redefined", quote: "For our gala events, this chef delivers consistency and sophistication. The menu consulting was invaluable in creating an unforgettable dining experience.", tag: "Corporate", avatarSrc: "http://img.b2bpic.net/free-photo/boy-with-champagne-new-year-party_23-2147995163.jpg", avatarAlt: "Emma Chen", imageSrc: "http://img.b2bpic.net/free-photo/side-view-souffle-cake-with-chocolate-berry-jelly-whipped-cream-strawberry-chocolate-chips-plate_141793-3681.jpg?_wi=2", imageAlt: "Gourmet dessert"
|
|
},
|
|
{
|
|
id: "4", name: "David Park, Restaurant Owner", date: "Date: July 2024", title: "True mastery in every dish", quote: "His expertise in menu development completely transformed our restaurant's approach. The creativity and precision are simply unmatched.", tag: "Consulting", avatarSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1624.jpg", avatarAlt: "David Park", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg?_wi=3", imageAlt: "Chef at work"
|
|
},
|
|
]}
|
|
tagAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Get in Touch"
|
|
title="Ready to Elevate Your Culinary Experience?"
|
|
description="Let's discuss your culinary vision and create an unforgettable dining experience tailored exclusively for you"
|
|
tagIcon={Mail}
|
|
background={{ variant: "gradient-bars" }}
|
|
useInvertedBackground={true}
|
|
inputPlaceholder="your@email.com"
|
|
buttonText="Schedule Consultation"
|
|
termsText="We respect your privacy. We'll contact you to discuss your culinary needs."
|
|
tagAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="Chef"
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Private Chef", href: "#services" },
|
|
{ label: "Event Catering", href: "#services" },
|
|
{ label: "Menu Consulting", href: "#services" },
|
|
],
|
|
},
|
|
{
|
|
title: "About", items: [
|
|
{ label: "Our Story", href: "#about" },
|
|
{ label: "Signature Dishes", href: "#dishes" },
|
|
{ label: "Testimonials", href: "#testimonials" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Book Now", href: "#contact" },
|
|
{ label: "Contact", href: "#contact" },
|
|
{ label: "Inquiries", href: "mailto:hello@chef.com" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Cancellation Policy", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2025 Chef. All rights reserved. Culinary excellence delivered with passion."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|