12 Commits

Author SHA1 Message Date
3c3531aac5 Update src/app/page.tsx 2026-04-12 02:03:56 +00:00
7949c5d998 Update src/app/about/page.tsx 2026-04-12 02:03:56 +00:00
5dba82eeb6 Merge version_3 into main
Merge version_3 into main
2026-04-12 02:00:17 +00:00
499b19b4b6 Update src/app/page.tsx 2026-04-12 02:00:14 +00:00
f8c0949f3a Update src/app/about/page.tsx 2026-04-12 02:00:13 +00:00
6370a6b845 Merge version_2 into main
Merge version_2 into main
2026-04-12 01:58:51 +00:00
f592d777a3 Update src/app/about/page.tsx 2026-04-12 01:58:48 +00:00
d1f65a3369 Merge version_2 into main
Merge version_2 into main
2026-04-12 01:58:25 +00:00
6925f17791 Update src/app/page.tsx 2026-04-12 01:58:22 +00:00
bea1671afd Add src/app/about/page.tsx 2026-04-12 01:58:21 +00:00
f3c4a044c6 Merge version_1 into main
Merge version_1 into main
2026-04-12 01:43:35 +00:00
168f99992d Merge version_1 into main
Merge version_1 into main
2026-04-12 01:39:46 +00:00
2 changed files with 72 additions and 4 deletions

67
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { History } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="floatingGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Menu", id: "/#menu" },
{ name: "About", id: "/about" },
{ name: "Catering", id: "/#catering" },
{ name: "Events", id: "/#events" },
{ name: "Visit", id: "/#visit" },
]}
brandName="Molisana Bakery"
/>
</div>
<div id="about-content" data-section="about-content">
<TextAbout
tag="Our Story"
tagIcon={History}
title="Old-School Italian Hospitality"
className="py-20"
useInvertedBackground={false}
/>
<div className="max-w-4xl mx-auto px-6 pb-20 space-y-8">
<p className="text-lg">Molisana Bakery was born from a desire to bring the authentic, old-school Italian bakery experience to our local community. We pride ourselves on preserving traditions passed down through generations.</p>
<p className="text-lg">Our daily hot table is the heart of our kitchen, featuring scratch-made classics that change with the seasons. We believe food is a language of love, and we serve every dish with the warmth of a family gathering.</p>
<p className="text-lg">Whether you stop in for your morning espresso ritual to start the day or join us for a slow lunch, our commitment to hospitality remains the same: treat every customer like a long-time friend at our family table.</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Bakery", items: [{ label: "Menu", href: "/#menu" }, { label: "Catering", href: "/#catering" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "/#events" }] },
{ title: "Visit", items: [{ label: "Directions", href: "/#visit" }, { label: "Contact", onClick: () => { window.location.href = '/#contact'; } }] },
]}
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
bottomRightText="Authentic Italian Daily Rituals"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -30,6 +30,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Menu", id: "#menu" },
{ name: "About", id: "/about" },
{ name: "Catering", id: "#catering" },
{ name: "Events", id: "#events" },
{ name: "Visit", id: "#visit" },
@@ -122,10 +123,10 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
text="Ready to feed your team? From corporate catering to private birthday dinners, we bring the authentic taste of Italy to your event."
text="Visit us at 5731 Hwy 7, Woodbridge, ON L4L 1T7. We are open daily from 6 a.m. to 10 p.m. Call us at (905) 856-6100 for orders and inquiries."
buttons={[
{ text: "Get a Catering Quote", href: "mailto:hello@molisanabakery.com" },
{ text: "Call to Order", href: "tel:+1000000000" },
{ text: "Call (905) 856-6100", onClick: () => { const el = document.getElementById('contact'); el?.scrollIntoView({ behavior: 'smooth' }); } },
]}
/>
</div>
@@ -134,8 +135,8 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Bakery", items: [{ label: "Menu", href: "#menu" }, { label: "Catering", href: "#catering" }] },
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Events", href: "#events" }] },
{ title: "Visit", items: [{ label: "Directions", href: "#visit" }, { label: "Contact", href: "tel:+1000000000" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "#events" }] },
{ title: "Visit", items: [{ label: "Directions", href: "#visit" }, { label: "Contact", onClick: () => { const el = document.getElementById('contact'); el?.scrollIntoView({ behavior: 'smooth' }); } }] },
]}
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
bottomRightText="Authentic Italian Daily Rituals"