3 Commits

Author SHA1 Message Date
487f0529d0 Update src/app/menu/page.tsx 2026-04-13 16:53:12 +00:00
cc0a0d1c24 Update src/app/menu/page.tsx 2026-04-13 16:52:41 +00:00
1a8b9eafe1 Merge version_13 into main
Merge version_13 into main
2026-04-13 16:48:54 +00:00

View File

@@ -2,9 +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 PricingCardOne from '@/components/sections/pricing/PricingCardOne';
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() {
@@ -23,7 +23,7 @@ export default function FullMenuPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Full Menu", id: "/menu" },
@@ -34,31 +34,31 @@ export default function FullMenuPage() {
</div>
<div id="menu" data-section="menu">
<PricingCardOne
title="Full Menu"
description="Explore our scratch-made breakfast, lunch, and pastry selections."
<FeatureCardSeven
title="Our Menu"
description="Scratch-made breakfast, lunch, and pastry selections prepared daily."
textboxLayout="default"
animationType="slide-up"
animationType="blur-reveal"
useInvertedBackground={false}
plans={[
{ id: "merch", badge: "Merch", price: "$15.53", subtitle: "Gear & Goods", features: ["MUG CLUB 20oz Mug"] },
{ id: "beverages", badge: "Beverages", price: "Varies", subtitle: "Refreshments", features: ["Coffee", "Pepsi Products", "Tea", "Milk", "RedBull"] },
{ id: "pastries", badge: "Pastries", price: "$1.00 - $4.66", subtitle: "Baked Goods", features: ["Muffins", "Cinnamon Bun $3.62", "Croissant $2.85", "Day Old Goodies $1.55", "Strudel $3.00", "Whoopie Pies $4.66", "Tonys Donuts $1.00", "Blueberry Strudel $3.50", "Cookies $3.00", "Gluten Free Brownie $2.59", "Blueberry Muffin Top $1.55"] },
{ id: "sides", badge: "Breakfast Sides", price: "$1.55 - $5.95", subtitle: "A la carte", features: ["Side Of Bacon (3 Pieces) $3.11", "Side Of Sausage (2 Patties) $3.11", "Single Egg $1.55", "Side Of Ham Steak $3.36", "Side Of Hash $3.88", "Side Of Toast (2 Pieces) $1.81", "Sharkbite Side $5.95", "Side Of Homefries $2.95", "SIDE OF LOX $3.88", "Hashbrown $1.55"] },
{ id: "plates", badge: "Breakfast Plates", price: "$7.50 - $11.64", subtitle: "Served Hot", features: ["Cheese Omelette $8.28", "Western Omelette $11.13", "Meat & Cheese Omelette $10.87", "Veggie & Cheese Omelette $10.87", "2 Eggs Your Way $7.50", "Sharkbite Breakfast $11.64", "Breakfast Burrito $11.64", "Egg & Cheese Breakfast Quesadilla $8.28"] },
{ id: "sandwiches", badge: "Breakfast Sandwiches", price: "$4.04 - $8.27", subtitle: "Signature Series", features: ["Oh-My Sandwich $7.76", "Buxton Bomb $8.27", "The Sarah $7.76", "Classic Breakfast Sandwich $4.04", "Western Breakfast Sandwich $7.76"] },
{ id: "bagels", badge: "Bagels + Cream Cheese", price: "$6.21 - $24.84", subtitle: "Bulk & Cream Cheese", features: ["Bagel W/ Cream Cheese", "1/2 Dozen Bagels $12.42", "Dozen Bagels $24.84", "Day Old Bagels $6.21", "2oz Cream Cheese", "4oz Cream Cheese", "8oz Cream Cheese", "16oz Cream Cheese"] }
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."
/>
@@ -66,4 +66,4 @@ export default function FullMenuPage() {
</ReactLenis>
</ThemeProvider>
);
}
}