Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-24 11:56:13 +00:00

View File

@@ -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 }]}
/>
</div>