Add Get Started page
cgen-0df4b16c9e8749f7b232e8c20fe010fd
This commit is contained in:
parent
5abb43ccd7
commit
c5e59e5b77
1 changed files with 23 additions and 0 deletions
23
client/pages/GetStarted.tsx
Normal file
23
client/pages/GetStarted.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue