3 Commits

Author SHA1 Message Date
f8a8633d6c Update src/app/page.tsx 2026-03-11 18:43:31 +00:00
d215334b9d Merge version_2 into main
Merge version_2 into main
2026-03-11 18:31:39 +00:00
9957c56e12 Merge version_2 into main
Merge version_2 into main
2026-03-11 18:31:08 +00:00

View File

@@ -12,6 +12,11 @@ import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"
import { Coffee, Palette, UtensilsCrossed, Sparkles, Paintbrush, Heart, MapPin } from "lucide-react"; import { Coffee, Palette, UtensilsCrossed, Sparkles, Paintbrush, Heart, MapPin } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const handleVisitButtonClick = () => {
const googleMapsUrl = "https://www.google.com/maps/search/Belle+Caf%C3%A9+Regent+Street+Christchurch";
window.open(googleMapsUrl, "_blank");
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
@@ -247,8 +252,9 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Get Updates" buttonText="Get Directions"
termsText="Join our mailing list for specials, menu updates, and art exhibitions at Belle Café." termsText="Click 'Get Directions' to visit us on Google Maps or join our mailing list for specials and updates."
onSubmit={handleVisitButtonClick}
/> />
</div> </div>