Add Get Started page

cgen-0df4b16c9e8749f7b232e8c20fe010fd
This commit is contained in:
Builder.io 2025-09-27 20:20:26 +00:00
parent 5abb43ccd7
commit c5e59e5b77

View file

@ -0,0 +1,23 @@
import Layout from "@/components/Layout";
import { Link } from "react-router-dom";
export default function GetStarted() {
return (
<Layout>
<div className="min-h-screen bg-aethex-gradient py-12">
<div className="container mx-auto px-4 max-w-4xl space-y-8">
<h1 className="text-3xl font-bold text-gradient-purple">Get Started</h1>
<ol className="list-decimal list-inside space-y-3 text-muted-foreground">
<li>Create your account or sign in.</li>
<li>Complete onboarding to tailor your experience.</li>
<li>Explore your personalized dashboard and projects.</li>
</ol>
<div className="flex gap-3 pt-4">
<Link to="/onboarding" className="text-aethex-400 hover:underline">Start Onboarding</Link>
<Link to="/dashboard" className="text-aethex-400 hover:underline">Open Dashboard</Link>
</div>
</div>
</div>
</Layout>
);
}