diff --git a/backend/app/models/subscription.py b/backend/app/models/subscription.py index fc2e818..e7f4571 100644 --- a/backend/app/models/subscription.py +++ b/backend/app/models/subscription.py @@ -56,7 +56,7 @@ TIER_CONFIG = { "bulk_tools": False, "seo_metrics": False, "yield": False, - "exclusive_drops": False, + "daily_drop_digest": False, } }, SubscriptionTier.TRADER: { @@ -82,7 +82,7 @@ TIER_CONFIG = { "bulk_tools": False, "seo_metrics": False, "yield": True, - "exclusive_drops": False, + "daily_drop_digest": False, } }, SubscriptionTier.TYCOON: { @@ -93,7 +93,7 @@ TIER_CONFIG = { "portfolio_limit": -1, # Unlimited portfolio "listing_limit": -1, # Unlimited listings "sniper_limit": 50, # Sniper alerts - "check_frequency": "5min", # Every 5 minutes (was 10min) + "check_frequency": "realtime", # Every 10 minutes "history_days": -1, # Unlimited "features": { "email_alerts": True, @@ -108,7 +108,7 @@ TIER_CONFIG = { "bulk_tools": True, "seo_metrics": True, "yield": True, - "exclusive_drops": True, # Tycoon exclusive: 24h early access + "daily_drop_digest": True, # Tycoon exclusive: Curated top 10 drops daily } }, } diff --git a/frontend/src/app/pricing/page.tsx b/frontend/src/app/pricing/page.tsx index 06a39b5..7bd372b 100644 --- a/frontend/src/app/pricing/page.tsx +++ b/frontend/src/app/pricing/page.tsx @@ -65,14 +65,14 @@ const tiers = [ description: 'Full firepower. No limits.', features: [ { text: 'Market Feed', highlight: true, available: true, sublabel: 'Priority' }, - { text: 'Alert Speed', highlight: true, available: true, sublabel: '5 min' }, + { text: 'Alert Speed', highlight: true, available: true, sublabel: '10 min' }, { text: 'Unlimited Watchlist', highlight: true, available: true }, { text: 'Unlimited Portfolio', highlight: true, available: true }, { text: 'Unlimited Listings', highlight: true, available: true, sublabel: 'Featured' }, { text: '50 Sniper Alerts', highlight: true, available: true }, { text: 'Score + SEO Data', highlight: true, available: true }, { text: 'API + Webhooks', highlight: true, available: true }, - { text: 'Exclusive Drops', highlight: true, available: true, sublabel: '24h Early' }, + { text: 'Daily Drop Digest', highlight: true, available: true, sublabel: 'Curated Top 10' }, ], cta: 'Go Tycoon', highlighted: false, @@ -83,7 +83,7 @@ const tiers = [ const comparisonFeatures = [ { name: 'Market Feed', scout: 'Raw', trader: 'Curated', tycoon: 'Priority + Early' }, - { name: 'Alert Speed', scout: 'Daily', trader: 'Hourly', tycoon: 'Every 5 min' }, + { name: 'Alert Speed', scout: 'Daily', trader: 'Hourly', tycoon: 'Every 10 min' }, { name: 'Watchlist', scout: '10 Domains', trader: '100 Domains', tycoon: 'Unlimited' }, { name: 'Portfolio', scout: '3 Domains', trader: '50 Domains', tycoon: 'Unlimited' }, { name: 'Listings', scout: '1 (Try it)', trader: '10 (0% Fee)', tycoon: 'Unlimited + Featured' }, @@ -91,14 +91,14 @@ const comparisonFeatures = [ { name: 'Valuation', scout: 'Basic Score', trader: 'Pounce Score', tycoon: 'Score + SEO' }, { name: 'TLD Intel', scout: 'Public', trader: 'Renewal Prices', tycoon: 'Full History' }, { name: 'Yield', scout: '—', trader: '✓', tycoon: '✓' }, - { name: 'Exclusive Drops', scout: '—', trader: '—', tycoon: '24h Early Access' }, + { name: 'Daily Drop Digest', scout: '—', trader: '—', tycoon: 'Curated Top 10' }, { name: 'API Access', scout: '—', trader: '—', tycoon: '✓' }, ] const faqs = [ { q: 'How fast will I know when a domain drops?', - a: 'Depends on your plan. Scout: daily. Trader: hourly. Tycoon: every 5 minutes. When it drops, you\'ll know.', + a: 'Depends on your plan. Scout: daily. Trader: hourly. Tycoon: every 10 minutes. When it drops, you\'ll know.', }, { q: 'What\'s domain valuation?',