Add Yield Coming Soon banner, realistic feature review
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

This commit is contained in:
2025-12-17 09:30:03 +01:00
parent 4d90b75717
commit 7f3846934c
2 changed files with 20 additions and 1 deletions

View File

@ -44,7 +44,11 @@ LOG_FILE = Path("/home/user/logs/zone_sync.log")
COMPRESS_DOMAIN_LISTS = True COMPRESS_DOMAIN_LISTS = True
# CZDS TLDs we have access to # CZDS TLDs we have access to
CZDS_TLDS = ["app", "dev", "info", "online", "org", "xyz"] # NOTE: .org and .xyz are temporarily disabled - too large for 2GB RAM server
# .org = 10M+ domains (~500MB RAM), .xyz = 8M+ domains (~400MB RAM)
# Enable when server has more RAM or we implement streaming to SQLite
CZDS_TLDS = ["app", "dev", "info", "online"] # Small/medium TLDs only
CZDS_TLDS_DISABLED = ["org", "xyz"] # Too large for current server
# Switch.ch AXFR config # Switch.ch AXFR config
SWITCH_CONFIG = { SWITCH_CONFIG = {

View File

@ -466,6 +466,21 @@ export default function YieldPage() {
</button> </button>
</section> </section>
{/* FEATURE IN DEVELOPMENT BANNER */}
<section className="px-4 lg:px-10 pt-4">
<div className="bg-amber-400/10 border border-amber-400/20 p-4 text-amber-400 flex items-center gap-3">
<Sparkles className="w-5 h-5 shrink-0" />
<div>
<h2 className="text-sm font-bold uppercase tracking-wider flex items-center gap-2">
Feature in Development <span className="px-2 py-0.5 text-[8px] font-mono bg-amber-400/20 text-amber-400 border border-amber-400/30">Coming Soon</span>
</h2>
<p className="text-xs font-mono mt-1 text-amber-400/80">
We're building an automated yield system for your parked domains. Soon you'll be able to monetize idle domains with intelligent traffic routing. Stay tuned for updates!
</p>
</div>
</div>
</section>
{/* CONTENT */} {/* CONTENT */}
<section className="px-4 lg:px-10 py-4 pb-28 lg:pb-10"> <section className="px-4 lg:px-10 py-4 pb-28 lg:pb-10">
{loading ? ( {loading ? (