4 Commits

Author SHA1 Message Date
a6f1b66b84 Update src/app/page.tsx 2026-04-13 15:18:02 +00:00
08cfaa1c48 Merge version_1 into main
Merge version_1 into main
2026-04-13 15:13:28 +00:00
e6164bbcd6 Merge version_1 into main
Merge version_1 into main
2026-04-13 15:13:05 +00:00
1a4f016b5a Merge version_1 into main
Merge version_1 into main
2026-04-13 15:12:36 +00:00

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
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 (
@@ -60,9 +60,9 @@ export default function LandingPage() {
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086037.jpg?_wi=1", imageAlt: "Fresh artisan bagel sandwich"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-rw6mue2h.png", 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-dczfvy9h.png", imageAlt: "Croissants and fresh breakfast"}
]}
mediaAnimation="slide-up"
rating={5}
@@ -77,7 +77,7 @@ 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}
/>
@@ -91,9 +91,9 @@ export default function LandingPage() {
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: "1", name: "Breakfast Burrito", price: "$11.64", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png"},
{
id: "2", name: "Classic Breakfast Sandwich", price: "$4.04", imageSrc: "http://img.b2bpic.net/free-photo/sweet-loaf-platter_114579-87734.jpg"},
id: "2", name: "Classic Breakfast Sandwich", price: "$4.04", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png"},
{
id: "3", name: "Western Omelette", price: "$11.13", imageSrc: "http://img.b2bpic.net/free-photo/spanich-omelet-plate_74190-5956.jpg"},
]}
@@ -133,13 +133,10 @@ export default function LandingPage() {
</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"},
@@ -148,18 +145,14 @@ export default function LandingPage() {
</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>