Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c3531aac5 | |||
| 7949c5d998 | |||
| 5dba82eeb6 |
@@ -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() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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' }); } },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -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() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user