From 7949c5d998a1beb17123b054c2038657c82e488b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 02:03:56 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cd30f32..deb3135 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -55,7 +55,7 @@ export default function AboutPage() { 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:+19058566100" }] }, + { 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" @@ -64,4 +64,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 3c3531aac5cd506ad6e4bcbdfbe832dd6ad954a3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 02:03:56 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2fcbf60..2c760b1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -126,7 +126,7 @@ export default function LandingPage() { 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 (905) 856-6100", href: "tel:+19058566100" }, + { text: "Call (905) 856-6100", onClick: () => { const el = document.getElementById('contact'); el?.scrollIntoView({ behavior: 'smooth' }); } }, ]} /> @@ -136,7 +136,7 @@ export default function LandingPage() { 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:+19058566100" }] }, + { 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" @@ -145,4 +145,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1