Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c3531aac5 | |||
| 7949c5d998 | |||
| 5dba82eeb6 | |||
| 499b19b4b6 | |||
| f8c0949f3a | |||
| 6370a6b845 | |||
| d1f65a3369 |
@@ -55,7 +55,7 @@ export default function AboutPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{ title: "Bakery", items: [{ label: "Menu", href: "/#menu" }, { label: "Catering", href: "/#catering" }] },
|
{ title: "Bakery", items: [{ label: "Menu", href: "/#menu" }, { label: "Catering", href: "/#catering" }] },
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "/#events" }] },
|
{ 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: "Visit", items: [{ label: "Directions", href: "/#visit" }, { label: "Contact", onClick: () => { window.location.href = '/#contact'; } }] },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
|
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
|
||||||
bottomRightText="Authentic Italian Daily Rituals"
|
bottomRightText="Authentic Italian Daily Rituals"
|
||||||
@@ -64,4 +64,4 @@ export default function AboutPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -123,10 +123,10 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
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={[
|
buttons={[
|
||||||
{ text: "Get a Catering Quote", href: "mailto:hello@molisanabakery.com" },
|
{ 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>
|
</div>
|
||||||
@@ -136,7 +136,7 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{ title: "Bakery", items: [{ label: "Menu", href: "#menu" }, { label: "Catering", href: "#catering" }] },
|
{ title: "Bakery", items: [{ label: "Menu", href: "#menu" }, { label: "Catering", href: "#catering" }] },
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Events", href: "#events" }] },
|
{ 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: "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."
|
bottomLeftText="© 2024 Molisana Bakery. All rights reserved."
|
||||||
bottomRightText="Authentic Italian Daily Rituals"
|
bottomRightText="Authentic Italian Daily Rituals"
|
||||||
@@ -145,4 +145,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user