Switch to version 3: added src/app/our-story/page.tsx

This commit is contained in:
2026-04-15 14:31:44 +00:00
parent 3e5706a333
commit 1be31dd95f

View 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>
);
}