25 lines
843 B
TypeScript
25 lines
843 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="mx-auto flex min-h-screen w-full max-w-4xl flex-col justify-center gap-6 px-6">
|
|
<h1 className="text-4xl font-bold text-slate-900">Plesk Agency Portal</h1>
|
|
<p className="max-w-2xl text-slate-600">
|
|
Multi-tenant MVP for agencies to connect Plesk instances, manage subscriptions and
|
|
domains, and control billing with Stripe.
|
|
</p>
|
|
<div className="flex items-center gap-3">
|
|
<Link
|
|
href="/login"
|
|
className="rounded-lg bg-brand-600 px-4 py-2 text-sm font-medium text-white"
|
|
>
|
|
Sign in
|
|
</Link>
|
|
<Link href="/dashboard" className="rounded-lg border border-slate-300 px-4 py-2 text-sm">
|
|
Dashboard
|
|
</Link>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|