3 Commits

Author SHA1 Message Date
f3030f7507 Merge version_3 into main
Merge version_3 into main
2026-04-30 23:45:44 +00:00
e7af2262b0 Update src/app/page.tsx 2026-04-30 23:45:41 +00:00
09061f22d4 Merge version_2 into main
Merge version_2 into main
2026-04-30 23:42:58 +00:00

View File

@@ -52,8 +52,10 @@ export default function LandingPage() {
title="Are you making money online? Find out instantly what you legally need to do" 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." 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={[ buttons={[
{ {
text: "Run My Check Free", href: "#contact"}, text: "Run My Check Free",
onClick: () => { window.location.hash = "contact"; }
},
]} ]}
mediaItems={[ mediaItems={[
{ {
@@ -78,6 +80,12 @@ export default function LandingPage() {
title="Compliance, Simplified for You" title="Compliance, Simplified for You"
description={[ 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."]} "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"; }
}
]}
/> />
</div> </div>
@@ -107,13 +115,17 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: "free", tag: "Free", price: "£0", period: "Check", description: "Get your instant compliance status now.", button: { 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: [ featuresTitle: "Included:", features: [
"Instant status result", "GOV.UK rule summary", "No signup required"], "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: { 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: [ featuresTitle: "Includes Everything Free, Plus:", features: [
"HMRC registration walkthrough", "Trading allowance calculator", "Priority support email"], "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." 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" imageSrc="http://img.b2bpic.net/free-photo/business-people-laptop_23-2147708501.jpg"
buttonText="Run My Check" buttonText="Run My Check"
onSubmit={(email) => { console.log("Checking:", email); }}
/> />
</div> </div>
@@ -186,4 +199,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }