WIP: pending changes — docs, webhook, nav/footer (committed per Sami request, not yet reviewed)

This commit is contained in:
Krystie
2026-06-13 21:29:36 -07:00
parent 69c2179a43
commit 3b2023e97a
19 changed files with 7584 additions and 7717 deletions
+39
View File
@@ -0,0 +1,39 @@
import Navbar from '@/components/Navbar';
import Footer from '@/components/Footer';
import DocsLayout from '@/components/docs/DocsLayout';
export default function DocsPremiumPage() {
return (
<div className="flex min-h-screen flex-col bg-surface-950 text-surface-50">
<Navbar />
<DocsLayout
title="Premium Features"
intro="DashCaddy keeps its Premium model intentionally narrow. The core platform remains useful without a license, while Premium unlocks a small set of advanced orchestration features."
>
<h2>Premium-gated features</h2>
<ul>
<li><strong>SSO</strong>: Auto-Login SSO</li>
<li><strong>Recipes</strong>: multi-container stack deployment</li>
<li><strong>Swarm</strong>: Docker Swarm multi-node orchestration</li>
</ul>
<h2>Current plan model</h2>
<ul>
<li>1 month $25</li>
<li>3 months $50</li>
<li>6 months $65</li>
<li>12 months $99</li>
</ul>
<p>
Subscriptions only, one Premium tier, one active machine at a time, 7-day grace period, cancel at period end, and no free trial.
</p>
<h2>License behavior</h2>
<p>
DashCaddys app-side licensing is already built around an external validation and deactivation service, rather than unlimited static license reuse.
</p>
</DocsLayout>
<Footer />
</div>
);
}