Compare commits
23 Commits
version_1
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| ec9e438b4d | |||
| 63f115dbbc | |||
| 9de8d46990 | |||
| 73e581ec81 | |||
| 18b8cde776 | |||
| 1d1b9438f0 | |||
| 114cbd57de | |||
| dd5cc7fe91 | |||
| f69e294521 | |||
| eeea36db83 | |||
| 7bfe5e095a | |||
| 6620707b16 | |||
| ba8c6d2c77 | |||
| a1cd753a9c | |||
| 5316be8ca9 | |||
| 64c485c780 | |||
| 4fbcdc4a6b | |||
| 65fc945d79 | |||
| dc2156fb22 | |||
| a6f1b66b84 | |||
| 08cfaa1c48 | |||
| e6164bbcd6 | |||
| 1a4f016b5a |
51
src/app/menu/page.tsx
Normal file
51
src/app/menu/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
113
src/app/page.tsx
113
src/app/page.tsx
@@ -2,15 +2,13 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
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 } from "lucide-react";
|
||||
import { Coffee, Instagram, Facebook, MapPin } 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: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086037.jpg?_wi=1", imageAlt: "Fresh artisan bagel sandwich"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-vanilla-pie-table-with-glass-milk_114579-4265.jpg", imageAlt: "Croissants and vanilla pie on the table"}
|
||||
{ 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}
|
||||
@@ -77,92 +65,49 @@ export default function LandingPage() {
|
||||
title="Cooking with Love & Community Spirit"
|
||||
description="At Mr. Bagel Gorham, we are more than just a bagel shop. We are a family of passionate foodies dedicated to serving the most authentic, freshly cooked breakfasts and lunches in town. Every meal is made to order, and every guest is treated like a regular."
|
||||
subdescription="Whether you're stopping in for a quick morning coffee or sitting down for a full breakfast plate with friends, you'll feel the local heart in every bite. Come join us at 13 New Portland Rd!"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bar-still-life-with-cakes-table_23-2147821330.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-5gfka3co.png"
|
||||
imageAlt="Friendly staff inside Mr. Bagel"
|
||||
icon={Coffee}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Breakfast Burrito", price: "$11.64", imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-chicken-wrap_123827-36140.jpg"},
|
||||
{
|
||||
id: "2", name: "Classic Breakfast Sandwich", price: "$4.04", imageSrc: "http://img.b2bpic.net/free-photo/sweet-loaf-platter_114579-87734.jpg"},
|
||||
{
|
||||
id: "3", name: "Western Omelette", price: "$11.13", 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={[
|
||||
{
|
||||
id: "1", name: "Chelle", date: "5 months ago", title: "Regular Customer", quote: "Nancy remembers you by name no matter how many times you come in! They are an amazing group of women who really care about their community!", tag: "Delicious", avatarSrc: "http://img.b2bpic.net/free-photo/woman-having-virtual-date_23-2149307212.jpg", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086037.jpg?_wi=2", imageAlt: "smiling customer portrait casual"},
|
||||
{
|
||||
id: "2", name: "TriosGaming", date: "a month ago", title: "Breakfast Regular", quote: "I am a regular at the Gorham location simply because of the staff and the great energy with a smile I am greeted with each and every time.", tag: "Great Service", avatarSrc: "http://img.b2bpic.net/free-photo/fashionable-handsome-male-student-with-thick-beard-sitting-wooden-table-with-mug-drinking-coffee-having-happy-cheerful-face-expression_273609-1763.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25273.jpg", imageAlt: "smiling customer portrait casual"},
|
||||
{ id: "1", name: "Alex P.", date: "Oct 2024", title: "Amazing local gem", quote: "The best bagels in Gorham, hands down. The staff is so friendly and everything is always super fresh.", tag: "Local Regular", avatarSrc: "https://ui-avatars.com/api/?name=Alex+P&background=random" },
|
||||
{ id: "2", name: "Sarah J.", date: "Nov 2024", title: "Daily morning stop", quote: "I never start my morning without a coffee and a wrap here. Consistently great service and delicious food.", tag: "Daily Customer", avatarSrc: "https://ui-avatars.com/api/?name=Sarah+J&background=random" },
|
||||
{ id: "3", name: "Mike R.", date: "Jan 2025", title: "Great breakfast plates", quote: "The portions are huge and the quality is unmatched. My go-to breakfast spot on weekends.", tag: "Foodie", avatarSrc: "https://ui-avatars.com/api/?name=Mike+R&background=random" }
|
||||
]}
|
||||
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={[
|
||||
{
|
||||
id: "1", title: "What are your operating hours?", content: "We open at 6 AM every Tuesday through Sunday. We are closed on Mondays."},
|
||||
{
|
||||
id: "2", title: "Can I eat in?", content: "Yes! We have plenty of seating for you to enjoy your breakfast or lunch with friends and family."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Everything you need to know about visiting Mr. Bagel Gorham."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
tag="Visit Us"
|
||||
title="Start Your Morning with Us"
|
||||
description="Have a large catering order or just want to call ahead for pickup? Reach out to us today!"
|
||||
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>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
<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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user