21 Commits

Author SHA1 Message Date
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
5e24734de3 Update src/app/page.tsx 2026-04-13 16:42:51 +00:00
0b21a992b8 Merge version_10 into main
Merge version_10 into main
2026-04-13 16:40:19 +00:00
ec9e438b4d Update src/app/page.tsx 2026-04-13 16:40:16 +00:00
63f115dbbc Update src/app/menu/page.tsx 2026-04-13 16:40:16 +00:00
9de8d46990 Merge version_8 into main
Merge version_8 into main
2026-04-13 16:19:46 +00:00
73e581ec81 Update src/app/menu/page.tsx 2026-04-13 16:19:40 +00:00
18b8cde776 Merge version_7 into main
Merge version_7 into main
2026-04-13 16:15:13 +00:00
1d1b9438f0 Update src/app/page.tsx 2026-04-13 16:15:10 +00:00
114cbd57de Update src/app/menu/page.tsx 2026-04-13 16:15:10 +00:00
dd5cc7fe91 Merge version_6 into main
Merge version_6 into main
2026-04-13 15:31:45 +00:00
f69e294521 Update src/app/menu/page.tsx 2026-04-13 15:31:42 +00:00
eeea36db83 Merge version_6 into main
Merge version_6 into main
2026-04-13 15:31:13 +00:00
7bfe5e095a Update src/app/page.tsx 2026-04-13 15:31:10 +00:00
6620707b16 Add src/app/menu/page.tsx 2026-04-13 15:31:10 +00:00
ba8c6d2c77 Merge version_4 into main
Merge version_4 into main
2026-04-13 15:28:01 +00:00
a1cd753a9c Update src/app/page.tsx 2026-04-13 15:27:58 +00:00
5316be8ca9 Merge version_4 into main
Merge version_4 into main
2026-04-13 15:24:00 +00:00
64c485c780 Update src/app/page.tsx 2026-04-13 15:23:57 +00:00
4fbcdc4a6b Merge version_3 into main
Merge version_3 into main
2026-04-13 15:19:09 +00:00
2 changed files with 84 additions and 57 deletions

51
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,51 @@
"use client";
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 { Instagram, Facebook, MapPin } from "lucide-react";
export default function FullMenuPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="glass-elevated"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
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="footer" data-section="footer">
<FooterCard
logoText="Mr. Bagel Gorham"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: MapPin, href: "#", ariaLabel: "Location" }
]}
copyrightText="© 2025 Mr. Bagel Gorham. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -3,14 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Coffee, Instagram, Facebook, MapPin } from "lucide-react";
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Coffee, Instagram, Facebook, MapPin, Quote } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,16 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "hero"},
{
name: "About", id: "about"},
{
name: "Menu", id: "menu"},
{
name: "Testimonials", id: "testimonials"},
{
name: "Contact", id: "contact"},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Full Menu", id: "/menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Mr. Bagel"
/>
@@ -47,22 +40,17 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{
variant: "gradient-bars"}}
background={{ variant: "gradient-bars" }}
title="Gorham's Favorite Local Spot for Fresh Bagels & Full Breakfast"
description="Start your day the right way. From scratch-made breakfast plates to legendary lunch wraps, come experience the warmth and quality that keeps our locals coming back every single day."
tag="Since 2012 - Serving Gorham with Love"
buttons={[
{
text: "View Full Menu", href: "#menu"},
{
text: "Contact Us", href: "#contact"},
{ text: "View Full Menu", href: "/menu" },
{ text: "Contact Us", href: "#contact" },
]}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-rw6mue2h.png", imageAlt: "Fresh artisan bagel sandwich"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-dczfvy9h.png", imageAlt: "Croissants and fresh breakfast"}
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-rw6mue2h.png", imageAlt: "Fresh artisan bagel sandwich" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-dczfvy9h.png", imageAlt: "Croissants and fresh breakfast" }
]}
mediaAnimation="slide-up"
rating={5}
@@ -83,42 +71,31 @@ export default function LandingPage() {
/>
</div>
<div id="menu" data-section="menu">
<ProductCardOne
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
showRating={true}
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "1", name: "Breakfast Burrito", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png"},
{
id: "2", name: "Classic Breakfast Sandwich", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png"},
{
id: "3", name: "Western Omelette", price: "", imageSrc: "http://img.b2bpic.net/free-photo/spanich-omelet-plate_74190-5956.jpg"},
]}
title="Fresh From Our Kitchen"
description="Explore our delicious selection of breakfast plates, sandwiches, and fresh baked goods."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
useInvertedBackground={true}
testimonials={[]}
title="Loved by Gorham Locals"
description="See why we're considered the best local breakfast gem in town."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
faqs={[]}
sideTitle="Frequently Asked Questions"
sideDescription="Everything you need to know about visiting Mr. Bagel Gorham."
faqsAnimation="slide-up"
testimonials={[
{ 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>
@@ -128,8 +105,7 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
text="Call us at (207) 839-2802 to place your order or inquire about catering. We're ready to serve your breakfast needs!"
buttons={[
{
text: "Call Now: (207) 839-2802", href: "tel:2078392802"},
{ text: "Call Now: (207) 839-2802", href: "tel:2078392802" },
]}
/>
</div>