Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8931ceae4f | |||
| 70c31300bc | |||
| 012b3f10e4 | |||
| 76e15ece34 | |||
| 40a7a162d5 | |||
| 9014c7d385 | |||
| eb3a7ac5e9 | |||
| c4e7ace9c6 | |||
| cbc4c15521 | |||
| f9c26298da | |||
| e45988f577 | |||
| a70186372a | |||
| 60aabbe6f5 |
47
src/app/careers/page.tsx
Normal file
47
src/app/careers/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
|
||||||
|
export default function CareersPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Epicure Buffet"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Menu", id: "/ #menu" },
|
||||||
|
{ name: "Pricing", id: "/ #pricing" },
|
||||||
|
{ name: "Our Story", id: "/our-story" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact Us", id: "/contact-us" },
|
||||||
|
]}
|
||||||
|
button={{ text: "Book Now", href: "/ #contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto min-h-screen">
|
||||||
|
<h1 className="text-5xl font-bold mb-8">Careers</h1>
|
||||||
|
<p className="text-lg mb-6">Join our team of passionate culinary enthusiasts. We're always looking for talented individuals who value fresh, quality ingredients and exceptional customer service.</p>
|
||||||
|
<h2 className="text-2xl font-semibold mt-10 mb-4">Open Positions</h2>
|
||||||
|
<ul className="list-disc pl-6 space-y-2">
|
||||||
|
<li>Line Cook</li>
|
||||||
|
<li>Front of House Manager</li>
|
||||||
|
<li>Server Assistant</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Epicure Buffet"
|
||||||
|
copyrightText="© 2026 | Epicure Buffet"
|
||||||
|
columns={[
|
||||||
|
{ title: "Dining", items: [{ label: "Lunch Menu", href: "/ #menu" }, { label: "Dinner Menu", href: "/ #menu" }] },
|
||||||
|
{ title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] },
|
||||||
|
{ title: "Support", items: [{ label: "Reservations", href: "/ #contact" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
47
src/app/contact-us/page.tsx
Normal file
47
src/app/contact-us/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
|
||||||
|
export default function ContactUsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Epicure Buffet"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Menu", id: "/ #menu" },
|
||||||
|
{ name: "Pricing", id: "/ #pricing" },
|
||||||
|
{ name: "Our Story", id: "/our-story" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact Us", id: "/contact-us" },
|
||||||
|
]}
|
||||||
|
button={{ text: "Book Now", href: "/ #contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="pt-32 pb-20" id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Get in Touch"
|
||||||
|
description="Have a special request or a question about your upcoming reservation? Let us know."
|
||||||
|
inputs={[{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "email", type: "email", placeholder: "Your Email", required: true }]}
|
||||||
|
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Epicure Buffet"
|
||||||
|
copyrightText="© 2026 | Epicure Buffet"
|
||||||
|
columns={[
|
||||||
|
{ title: "Dining", items: [{ label: "Lunch Menu", href: "/ #menu" }, { label: "Dinner Menu", href: "/ #menu" }] },
|
||||||
|
{ title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] },
|
||||||
|
{ title: "Support", items: [{ label: "Reservations", href: "/ #contact" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
42
src/app/our-story/page.tsx
Normal file
42
src/app/our-story/page.tsx
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
|
||||||
|
export default function OurStoryPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Epicure Buffet"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Menu", id: "/ #menu" },
|
||||||
|
{ name: "Pricing", id: "/ #pricing" },
|
||||||
|
{ name: "Our Story", id: "/our-story" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact Us", id: "/contact-us" },
|
||||||
|
]}
|
||||||
|
button={{ text: "Book Now", href: "/ #contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto min-h-screen">
|
||||||
|
<h1 className="text-5xl font-bold mb-8">Our Story</h1>
|
||||||
|
<p className="text-lg mb-6 leading-relaxed">Founded in 2015, Epicure Buffet began with a single vision: to transform the way people experience all-you-can-eat dining. We believed that quality shouldn't be sacrificed for variety.</p>
|
||||||
|
<p className="text-lg leading-relaxed">Today, we source our ingredients from local farmers and premium global suppliers to bring you a dining experience that feels both indulgent and fresh.</p>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Epicure Buffet"
|
||||||
|
copyrightText="© 2026 | Epicure Buffet"
|
||||||
|
columns={[
|
||||||
|
{ title: "Dining", items: [{ label: "Lunch Menu", href: "/ #menu" }, { label: "Dinner Menu", href: "/ #menu" }] },
|
||||||
|
{ title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] },
|
||||||
|
{ title: "Support", items: [{ label: "Reservations", href: "/ #contact" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,13 +7,12 @@ import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleC
|
|||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
||||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import { Sparkles, Utensils, Award, Star, Smile } from "lucide-react";
|
||||||
import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle } from "lucide-react";
|
|
||||||
|
|
||||||
export default function BuffetPage() {
|
export default function BuffetPage() {
|
||||||
return (
|
return (
|
||||||
@@ -35,8 +34,9 @@ export default function BuffetPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Experience", id: "about" },
|
{ name: "Our Story", id: "/our-story" },
|
||||||
{ name: "Reserve", id: "contact" },
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact Us", id: "/contact-us" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Now", href: "#contact" }}
|
button={{ text: "Book Now", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
@@ -90,29 +90,36 @@ export default function BuffetPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<MetricCardOne
|
<PricingCardFive
|
||||||
title="Transparent Value"
|
title="Transparent Value"
|
||||||
description="Simple, family-friendly pricing with something for everyone."
|
description="Choose the perfect dining time for you and your family."
|
||||||
textboxLayout="default"
|
textboxLayout="split-actions"
|
||||||
useInvertedBackground={false}
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
metrics={[
|
useInvertedBackground={false}
|
||||||
{ id: "lunch", value: "$15.99", title: "Lunch", description: "Available daily until 4:00 PM", icon: Clock },
|
plans={[
|
||||||
{ id: "dinner", value: "$19.99", title: "Dinner", description: "Full evening buffet experience", icon: Utensils },
|
{
|
||||||
{ id: "kids", value: "Age-Based", title: "Kids Pricing", description: "Special rates for younger guests", icon: Users },
|
id: "lunch", tag: "Most Popular", tagIcon: Star,
|
||||||
|
price: "$15.99", period: "per person", description: "Full access to our lunch selection until 4:00 PM.", button: { text: "Reserve Lunch", href: "#contact" },
|
||||||
|
featuresTitle: "Includes:", features: ["All Lunch Stations", "Soft Drinks", "Fresh Sushi Bar"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "dinner", tag: "Premium Choice", tagIcon: Award,
|
||||||
|
price: "$29.99", period: "per person", description: "Complete dinner experience with full seafood bar.", button: { text: "Reserve Dinner", href: "#contact" },
|
||||||
|
featuresTitle: "Includes:", features: ["All Lunch Features", "Premium Crab Legs", "Chef Specials"]
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardTwelve
|
||||||
testimonial="The variety here is unmatched! From the fresh sashimi to the hot crab legs, everything was constantly replenished and tasted incredible. Truly the best value in the city."
|
cardTitle="Join 10,000+ Happy Guests"
|
||||||
rating={5}
|
cardTag="Testimonials"
|
||||||
author="— Sarah Jenkins, Local Foodie"
|
cardTagIcon={Star}
|
||||||
avatars={[
|
cardAnimation="slide-up"
|
||||||
{ src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg", alt: "Guest" },
|
useInvertedBackground={true}
|
||||||
|
testimonials={[
|
||||||
|
{ id: "1", name: "Sarah Jenkins", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg" },
|
||||||
|
{ id: "2", name: "Mark Thompson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man_23-2148213458.jpg" },
|
||||||
|
{ id: "3", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-looking-away_23-2148213451.jpg" }
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
/>
|
||||||
<FeatureCardSixteen
|
<FeatureCardSixteen
|
||||||
title="Our Commitment to Excellence"
|
title="Our Commitment to Excellence"
|
||||||
@@ -137,12 +144,12 @@ export default function BuffetPage() {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Book Your Table"
|
tag="Hurry, Seats Filling Fast"
|
||||||
title="Join Us Tonight"
|
title="Join Us Tonight"
|
||||||
description="Weekend dining fills fast — reserve now to guarantee your spot for an exceptional evening."
|
description="Urgency Alert: Peak hours filling up. Book now to guarantee your spot for an exceptional evening."
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Now", href: "#contact" }
|
{ text: "Reserve Now", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -152,8 +159,8 @@ export default function BuffetPage() {
|
|||||||
copyrightText="© 2026 | Epicure Buffet"
|
copyrightText="© 2026 | Epicure Buffet"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Dining", items: [{ label: "Lunch Menu", href: "#" }, { label: "Dinner Menu", href: "#" }] },
|
{ title: "Dining", items: [{ label: "Lunch Menu", href: "#" }, { label: "Dinner Menu", href: "#" }] },
|
||||||
{ title: "Company", items: [{ label: "Our Story", href: "#" }, { label: "Careers", href: "#" }] },
|
{ title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] },
|
||||||
{ title: "Support", items: [{ label: "Reservations", href: "#" }, { label: "Contact Us", href: "#" }] },
|
{ title: "Support", items: [{ label: "Reservations", href: "#contact" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: undefined;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,12 +13,12 @@
|
|||||||
--background: #0a0a0a;
|
--background: #0a0a0a;
|
||||||
--card: #161616;
|
--card: #161616;
|
||||||
--foreground: #f0f0f0;
|
--foreground: #f0f0f0;
|
||||||
--primary-cta: #ffffff;
|
--primary-cta: #d4af37;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1e1e1e;
|
--secondary-cta: #8b0000;
|
||||||
--secondary-cta-text: #e0e0e0;
|
--secondary-cta-text: #e0e0e0;
|
||||||
--accent: #d0d0d0;
|
--accent: #d4af37;
|
||||||
--background-accent: #9a9a9a;
|
--background-accent: #2e0000;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user