diff --git a/src/app/page.tsx b/src/app/page.tsx index 15433ec..75c58ba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -52,8 +52,10 @@ export default function LandingPage() { title="Are you making money online? Find out instantly what you legally need to do" description="No jargon. No stress. Just clear steps based on GOV.UK and HMRC rules. Free to check, no signup required, built for UK beginners and teen sellers." buttons={[ - { - text: "Run My Check Free", href: "#contact"}, + { + text: "Run My Check Free", + onClick: () => { window.location.hash = "contact"; } + }, ]} mediaItems={[ { @@ -78,6 +80,12 @@ export default function LandingPage() { title="Compliance, Simplified for You" description={[ "EarnSafe UK is designed specifically for the UK's growing army of online sellers, freelancers, and side-hustlers.", "We take the complexity out of HMRC registration, providing you with a clear, 60-second assessment of your legal obligations.", "Whether you're selling crafts on Etsy or reselling on TikTok, we keep you compliant without the legal headache."]} + buttons={[ + { + text: "Learn More", + onClick: () => { window.location.hash = "faq"; } + } + ]} /> @@ -107,13 +115,17 @@ export default function LandingPage() { plans={[ { id: "free", tag: "Free", price: "£0", period: "Check", description: "Get your instant compliance status now.", button: { - text: "Run Free Check"}, + text: "Run Free Check", + onClick: () => { window.location.hash = "contact"; } + }, featuresTitle: "Included:", features: [ "Instant status result", "GOV.UK rule summary", "No signup required"], }, { id: "premium", tag: "Professional", price: "£29", period: "One-time", description: "Deep dive into your specific earnings.", button: { - text: "Get Guidance"}, + text: "Get Guidance", + onClick: () => { window.location.hash = "contact"; } + }, featuresTitle: "Includes Everything Free, Plus:", features: [ "HMRC registration walkthrough", "Trading allowance calculator", "Priority support email"], }, @@ -174,6 +186,7 @@ export default function LandingPage() { description="Get instant clarity on your earnings. It takes less than 60 seconds, it's free, and requires no registration." imageSrc="http://img.b2bpic.net/free-photo/business-people-laptop_23-2147708501.jpg" buttonText="Run My Check" + onSubmit={(email) => { console.log("Checking:", email); }} /> @@ -186,4 +199,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}