8 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
6fbcb12862 Update src/app/page.tsx 2026-04-13 16:48:48 +00:00
bdf7670330 Update src/app/menu/page.tsx 2026-04-13 16:48:47 +00:00
492f39e33c Merge version_12 into main
Merge version_12 into main
2026-04-13 16:46:29 +00:00
389b617793 Update src/app/page.tsx 2026-04-13 16:46:26 +00:00
70c8310d5b Merge version_11 into main
Merge version_11 into main
2026-04-13 16:42:54 +00:00
2 changed files with 43 additions and 13 deletions

View File

@@ -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."
/>

View File

@@ -80,9 +80,21 @@ export default function LandingPage() {
title="Loved by Gorham Locals"
description="See why we're considered the best local breakfast gem in town."
testimonials={[
{ id: "1", name: "Alex P.", handle: "@alexp", testimonial: "The best bagels in Gorham, hands down. The staff is so friendly and everything is always super fresh.", rating: 5, icon: Quote },
{ id: "2", name: "Sarah J.", handle: "@sarahj", testimonial: "I never start my morning without a coffee and a wrap here. Consistently great service and delicious food.", rating: 5, icon: Quote },
{ id: "3", name: "Mike R.", handle: "@miker", testimonial: "The portions are huge and the quality is unmatched. My go-to breakfast spot on weekends.", rating: 5, icon: Quote }
{ id: "1", name: "Alex P.", handle: "@alexp", testimonial: "The best bagels in Gorham, hands down.", rating: 5, icon: Quote },
{ id: "2", name: "Sarah J.", handle: "@sarahj", testimonial: "Consistently great service and delicious food.", rating: 5, icon: Quote },
{ id: "3", name: "Mike R.", handle: "@miker", testimonial: "The portions are huge and the quality is unmatched.", rating: 5, icon: Quote },
{ id: "4", name: "Tom B.", handle: "@tomb", testimonial: "Great atmosphere and even better bagels!", rating: 5, icon: Quote },
{ id: "5", name: "Linda W.", handle: "@lindaw", testimonial: "Perfect morning ritual.", rating: 5, icon: Quote },
{ id: "6", name: "James K.", handle: "@jamesk", testimonial: "Always fresh, always warm.", rating: 5, icon: Quote },
{ id: "7", name: "Elena G.", handle: "@elenag", testimonial: "Super friendly local spot!", rating: 5, icon: Quote },
{ id: "8", name: "David F.", handle: "@davidf", testimonial: "The wraps are to die for.", rating: 5, icon: Quote },
{ id: "9", name: "Karen S.", handle: "@karens", testimonial: "My favorite place for a lazy weekend breakfast.", rating: 5, icon: Quote },
{ id: "10", name: "Brian H.", handle: "@brianh", testimonial: "Exceptional service every time.", rating: 5, icon: Quote },
{ id: "11", name: "Rachel L.", handle: "@rachell", testimonial: "Everything is always cooked fresh.", rating: 5, icon: Quote },
{ id: "12", name: "Steve M.", handle: "@stevem", testimonial: "Just what Gorham needed.", rating: 5, icon: Quote },
{ id: "13", name: "Diane C.", handle: "@dianec", testimonial: "Highly recommended for everyone.", rating: 5, icon: Quote },
{ id: "14", name: "Chris V.", handle: "@chrisv", testimonial: "Really nice spot to relax.", rating: 5, icon: Quote },
{ id: "15", name: "Susan B.", handle: "@susanb", testimonial: "Truly the best in town.", rating: 5, icon: Quote }
]}
/>
</div>