Temporarily simplify Dashboard to always show content for debugging
cgen-eb8f309ea94f45cba9cab9fb7852c4f4
This commit is contained in:
parent
df6c15511e
commit
1b93f87906
1 changed files with 2 additions and 37 deletions
|
|
@ -153,43 +153,8 @@ export default function Dashboard() {
|
|||
);
|
||||
}
|
||||
|
||||
// Show profile setup if no profile exists
|
||||
if (!profile) {
|
||||
return (
|
||||
<Layout>
|
||||
<div className="min-h-screen bg-aethex-gradient py-8 flex items-center justify-center">
|
||||
<Card className="bg-card/50 border-border/50 max-w-md w-full mx-4">
|
||||
<CardHeader className="text-center">
|
||||
<CardTitle className="text-white">Welcome to AeThex!</CardTitle>
|
||||
<CardDescription className="text-gray-300">
|
||||
Let's set up your profile to get started
|
||||
</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-4">
|
||||
<p className="text-gray-300 text-center">
|
||||
We need to create your profile to access the dashboard.
|
||||
</p>
|
||||
<div className="flex flex-col gap-3">
|
||||
<Button
|
||||
onClick={() => navigate("/onboarding")}
|
||||
className="bg-purple-600 hover:bg-purple-700 w-full"
|
||||
>
|
||||
Complete Profile Setup
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={() => navigate("/profile")}
|
||||
className="border-slate-600 text-white hover:bg-slate-800 w-full"
|
||||
>
|
||||
Quick Setup
|
||||
</Button>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
// Show profile setup if no profile exists, but allow dashboard to continue
|
||||
const showProfileSetup = !profile;
|
||||
|
||||
const statsDisplay = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue