From 749ccd584ab99a734c74e2cebd3613df9d7c2160 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 11:56:06 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index acd4893..4ea81ef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,13 +12,15 @@ export default function TaxGuyLandingPage() { const handleConsultation = () => { const options = [ { label: "Call +27 12 345 6789", action: () => window.location.href = "tel:+27123456789" }, + { label: "Call +27 79 130 9018", action: () => window.location.href = "tel:+27791309018" }, { label: "Visit Office (Pretoria)", action: () => window.open("https://maps.google.com/?q=Pretoria+Tax+Office", "_blank") }, { label: "Send Email", action: () => window.location.href = "mailto:consult@taxguy.co.za" } ]; - const choice = window.prompt("How would you like to connect?\n1. Call\n2. Visit\n3. Email"); + const choice = window.prompt("How would you like to connect?\n1. Call Office\n2. Call Direct\n3. Visit\n4. Email"); if (choice === "1") options[0].action(); else if (choice === "2") options[1].action(); else if (choice === "3") options[2].action(); + else if (choice === "4") options[3].action(); }; return ( @@ -48,8 +50,7 @@ export default function TaxGuyLandingPage() { title="Professional Tax Consulting in Pretoria" description="Expert tax planning, compliance, and filing services tailored for businesses and individuals in Pretoria. Secure your financial future with TaxGuy." background={{ variant: "sparkles-gradient" }} - avatars={[{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Tax Advisor" }] - } + avatars={[{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Tax Advisor" }]} buttons={[{ text: "Get Consultation", onClick: handleConsultation }]} /> -- 2.49.1