Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-04 16:38:00 +00:00

View File

@@ -115,7 +115,7 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{ variant: "gradient-bars" }}
text="Visit us at Milano's Bakery. Open Tuesday-Sunday, 7am-4pm."
text="Milano's Bakery | 123 Main St, Cityville | Open Tue-Sun: 7am - 4pm"
/>
</div>
@@ -124,13 +124,20 @@ export default function LandingPage() {
logoText="Milano's Bakery"
columns={[
{
title: "Visit Us", items: [
title: "Contact", items: [
{ label: "123 Main St, Cityville", href: "#" },
{ label: "(555) 123-4567", href: "tel:+15551234567" },
{ label: "contact@milanosbakery.com", href: "mailto:contact@milanosbakery.com" },
],
},
{
title: "Follow", items: [
title: "Bakery Hours", items: [
{ label: "Tue-Sun: 7am - 4pm", href: "#" },
{ label: "Closed on Mondays", href: "#" },
],
},
{
title: "Connect", items: [
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
],
@@ -142,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}