From 191941871c12547f84fdddb51c664f1e7d46374a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 05:51:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ee2953..4170783 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -53,7 +53,9 @@ export default function LandingPage() { } }, { - text: "Directions", href: "https://www.google.com/maps/dir/?api=1&destination=4635+N+Milwaukee+Ave+Chicago+IL", onClick: () => { + text: "Directions", onClick: (e) => { + e.preventDefault(); + e.stopPropagation(); window.open("https://www.google.com/maps/dir/?api=1&destination=4635+N+Milwaukee+Ave+Chicago+IL", "_blank", "noopener,noreferrer"); } }, -- 2.49.1