From eb84d39bc03deddb262c9ab6dbda8a63e1e30adf Mon Sep 17 00:00:00 2001 From: Ivan Fontosh Date: Sun, 28 Jun 2026 12:26:31 +0800 Subject: [PATCH] Polish landing copy, footer links, and buy button behavior. Rewrite feature descriptions in narrative style, open buy links in a new tab, update support email, rename key action to Choose key, and remove privacy policy from the footer. Co-authored-by: Cursor --- src/components/layout/Footer.tsx | 11 +++++-- src/components/layout/Header.tsx | 1 + src/components/sections/CtaBanner.tsx | 2 +- src/components/sections/Hero.tsx | 2 +- src/components/sections/Pricing.tsx | 1 + src/components/ui/Button.tsx | 10 +++++- src/data/siteContent.ts | 3 +- src/i18n/messages.ts | 46 +++++++++++++-------------- 8 files changed, 44 insertions(+), 32 deletions(-) diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 7116a36..d0eb1d9 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -9,7 +9,6 @@ const FOOTER_LINK_KEYS = [ "faq", "enterKey", "support", - "privacy", ] as const; const FOOTER_HREFS: Record<(typeof FOOTER_LINK_KEYS)[number], string> = { @@ -18,7 +17,6 @@ const FOOTER_HREFS: Record<(typeof FOOTER_LINK_KEYS)[number], string> = { faq: SITE_LINKS.faq, enterKey: SITE_LINKS.enterKey, support: SITE_LINKS.support, - privacy: SITE_LINKS.privacy, }; export function Footer() { @@ -30,7 +28,14 @@ export function Footer() {

© TTRPGPlayer