From 28e8ade05ff4bc89479fef9e4cb51f2cbca97fc5 Mon Sep 17 00:00:00 2001 From: fightme-cmd <80396935+fightme-cmd@users.noreply.github.com> Date: Sun, 5 Jul 2026 10:36:59 +0200 Subject: [PATCH] Refine paywall presentation and homepage copy --- src/App.jsx | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 1c7a346..6bc5a9d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -234,6 +234,15 @@ const TABS = [ const FREE_LEVEL_IDS = new Set([1, 2, 3, 4, 8, 9, 10, 18]); const CORE_ARTICLE_CASES = ['nominative', 'accusative', 'dative']; const STRIPE_PLANS = [ + { + id:'weekly', + name:'Weekly', + price:'$2.99', + cadence:'per week', + note:'Start here', + url: import.meta.env.VITE_STRIPE_WEEKLY_URL || '', + env:'VITE_STRIPE_WEEKLY_URL', + }, { id:'yearly', name:'Yearly', @@ -252,15 +261,6 @@ const STRIPE_PLANS = [ url: import.meta.env.VITE_STRIPE_LIFETIME_URL || '', env:'VITE_STRIPE_LIFETIME_URL', }, - { - id:'weekly', - name:'Weekly', - price:'$2.99', - cadence:'per week', - note:'Try it first', - url: import.meta.env.VITE_STRIPE_WEEKLY_URL || '', - env:'VITE_STRIPE_WEEKLY_URL', - }, ]; const LEVELS = [ @@ -891,11 +891,11 @@ export default function App() {