From 2f172a3ea8bef7f600bc920e277eb4c2696dc368 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:19:59 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 69e023e..13d1ae8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,7 +17,11 @@ const navItems = [ ]; const navButton = { - text: "Call Now", href: "tel:+16325551234" + text: "Reserve Your Slice", href: "#menu", props: { + style: { + background: "var(--primary-cta)", color: "var(--primary-cta-text)", padding: "0.75rem 1.5rem", borderRadius: "var(--radius-theme)", fontWeight: "600", fontSize: "0.875rem", border: "none", cursor: "pointer", transition: "all 0.3s ease", boxShadow: "0 4px 12px rgba(0, 0, 0, 0.15)" + } + } }; const heroProps = { -- 2.49.1