7 Commits

Author SHA1 Message Date
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
2 changed files with 74 additions and 5 deletions

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

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
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="menu" data-section="menu">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
title="Full Menu"
description="Our complete selection of fresh bagels, breakfast plates, and lunch wraps."
useInvertedBackground={false}
products={[
{ id: "1", name: "Signature Bagel Sandwich", price: "", imageSrc: "" },
{ id: "2", name: "Breakfast Wrap", price: "", imageSrc: "" },
{ id: "4", name: "Plain Bagel", price: "", imageSrc: "" },
{ id: "5", name: "Everything Bagel", price: "", imageSrc: "" },
{ id: "6", name: "Egg & Cheese Sandwich", price: "", imageSrc: "" },
]}
/>
</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

@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Full Menu", id: "/menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -46,7 +46,7 @@ export default function LandingPage() {
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: "View Full Menu", href: "/menu" },
{ text: "Contact Us", href: "#contact" },
]}
mediaItems={[
@@ -79,9 +79,8 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{ id: "1", name: "", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png" },
{ id: "2", name: "", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png" },
{ id: "3", name: "", price: "", imageSrc: "http://img.b2bpic.net/free-photo/spanich-omelet-plate_74190-5956.jpg" },
{ id: "1", name: "Signature Bagel Sandwich", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png" },
{ id: "2", name: "Breakfast Wrap", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png" },
]}
title="Fresh From Our Kitchen"
description="Explore our delicious selection of breakfast plates, sandwiches, and fresh baked goods."