Update src/app/page.tsx

This commit is contained in:
2026-03-11 18:43:31 +00:00
parent d215334b9d
commit f8a8633d6c

View File

@@ -12,6 +12,11 @@ import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"
import { Coffee, Palette, UtensilsCrossed, Sparkles, Paintbrush, Heart, MapPin } from "lucide-react";
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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -247,8 +252,9 @@ export default function LandingPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Get Updates"
termsText="Join our mailing list for specials, menu updates, and art exhibitions at Belle Café."
buttonText="Get Directions"
termsText="Click 'Get Directions' to visit us on Google Maps or join our mailing list for specials and updates."
onSubmit={handleVisitButtonClick}
/>
</div>