9 Commits

Author SHA1 Message Date
993d833a73 Update src/app/page.tsx 2026-04-13 17:11:55 +00:00
4c01c028d6 Update src/app/menu/page.tsx 2026-04-13 17:11:54 +00:00
96bdf487e2 Merge version_18 into main
Merge version_18 into main
2026-04-13 17:10:28 +00:00
9befad2146 Update src/app/page.tsx 2026-04-13 17:10:25 +00:00
a4573bdf93 Update src/app/menu/page.tsx 2026-04-13 17:10:25 +00:00
d64ee2bccc Merge version_17 into main
Merge version_17 into main
2026-04-13 17:07:09 +00:00
48d90ded81 Update src/app/page.tsx 2026-04-13 17:07:05 +00:00
27b84cd784 Update src/app/menu/page.tsx 2026-04-13 17:07:05 +00:00
2913c01795 Merge version_16 into main
Merge version_16 into main
2026-04-13 17:01:25 +00:00
2 changed files with 24 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ 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 { Instagram, Facebook, MapPin } from "lucide-react";
import { MapPin } from "lucide-react";
export default function FullMenuPage() {
return (
@@ -57,14 +57,22 @@ export default function FullMenuPage() {
<FooterCard
logoText="Mr. Bagel Gorham"
socialLinks={[
{ icon: Instagram, href: "https://www.instagram.com/gorhammisterbagel/", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://www.facebook.com/MrBagelGorham/", ariaLabel: "Facebook" },
{ icon: MapPin, href: "#", ariaLabel: "13 New Portland Rd, Gorham, ME 04038" }
]}
copyrightText="© 2025 Mr. Bagel Gorham. All rights reserved. 13 New Portland Rd, Gorham, ME 04038."
/>
<div className="flex justify-center mt-8">
<iframe
src="https://www.instagram.com/p/DFR-Gv0JzGZ/embed"
width="400"
height="480"
frameBorder="0"
scrolling="no"
allowTransparency={true}
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -8,7 +8,7 @@ import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Coffee, Instagram, Facebook, MapPin, Quote } from "lucide-react";
import { Coffee, MapPin, Quote } from "lucide-react";
export default function LandingPage() {
return (
@@ -114,14 +114,22 @@ export default function LandingPage() {
<FooterCard
logoText="Mr. Bagel Gorham"
socialLinks={[
{ icon: Instagram, href: "https://www.instagram.com/gorhammisterbagel/", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://www.facebook.com/MrBagelGorham/", ariaLabel: "Facebook" },
{ icon: MapPin, href: "#", ariaLabel: "13 New Portland Rd, Gorham, ME 04038" }
]}
copyrightText="© 2025 Mr. Bagel Gorham. All rights reserved. 13 New Portland Rd, Gorham, ME 04038."
/>
<div className="flex justify-center mt-8">
<iframe
src="https://www.instagram.com/p/DFR-Gv0JzGZ/embed"
width="400"
height="480"
frameBorder="0"
scrolling="no"
allowTransparency={true}
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}