|
|
|
|
@@ -2,8 +2,9 @@
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
|
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
|
|
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
|
|
|
|
import { Instagram, Facebook, MapPin } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
export default function FullMenuPage() {
|
|
|
|
|
@@ -22,25 +23,42 @@ export default function FullMenuPage() {
|
|
|
|
|
>
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarStyleCentered
|
|
|
|
|
<NavbarStyleFullscreen
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Home", id: "/" },
|
|
|
|
|
{ name: "About", id: "/#about" },
|
|
|
|
|
{ name: "Full Menu", id: "/menu" },
|
|
|
|
|
{ name: "Testimonials", id: "/#testimonials" },
|
|
|
|
|
{ name: "Contact", id: "/#contact" },
|
|
|
|
|
]}
|
|
|
|
|
brandName="Mr. Bagel"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="menu" data-section="menu">
|
|
|
|
|
<FeatureCardSeven
|
|
|
|
|
title="Our Menu"
|
|
|
|
|
description="Scratch-made breakfast, lunch, and pastry selections prepared daily."
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
animationType="blur-reveal"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
features={[
|
|
|
|
|
{ title: "Bagels", description: "Freshly baked bagels available in singles, half-dozens, and dozens, including cream cheese options." },
|
|
|
|
|
{ title: "Beverages", description: "Coffee, tea, Pepsi products, milk, and RedBull to refresh your day." },
|
|
|
|
|
{ title: "Egg Sandwiches", description: "Classic breakfast sandwich combinations including the Oh-My, Buxton Bomb, and The Sarah." },
|
|
|
|
|
{ title: "Omelettes & Plates", description: "Served hot: western, veggie, meat & cheese omelettes, breakfast burritos, and 2-egg breakfast plates." },
|
|
|
|
|
{ title: "Lunch Items", description: "Hearty lunch selections featuring burgers, wraps, salads, and more classic deli favorites." }
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterCard
|
|
|
|
|
<FooterBaseReveal
|
|
|
|
|
logoText="Mr. Bagel Gorham"
|
|
|
|
|
socialLinks={[
|
|
|
|
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
|
|
|
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
|
|
|
|
{ icon: MapPin, href: "#", ariaLabel: "Location" }
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Socials", items: [
|
|
|
|
|
{ label: "Instagram", href: "#" },
|
|
|
|
|
{ label: "Facebook", href: "#" },
|
|
|
|
|
{ label: "Location", href: "#" }
|
|
|
|
|
]}
|
|
|
|
|
]}
|
|
|
|
|
copyrightText="© 2025 Mr. Bagel Gorham. All rights reserved."
|
|
|
|
|
/>
|
|
|
|
|
|