Add Complete Setup button when profile incomplete

cgen-ed7e9eb345314cc899af3bf9e251c798
This commit is contained in:
Builder.io 2025-09-28 01:02:33 +00:00
parent f52ebf8228
commit 1cf467a4bf

View file

@ -107,6 +107,15 @@ export default function Layout({ children }: LayoutProps) {
>
<Link to="/dashboard">Dashboard</Link>
</Button>
{!profileComplete && (
<Button
asChild
size="sm"
className="bg-gradient-to-r from-aethex-500 to-neon-blue hover:from-aethex-600 hover:to-neon-blue/90 hover-lift glow-blue"
>
<Link to="/onboarding">Complete Setup</Link>
</Button>
)}
<Button variant="ghost" size="sm" className="hover-lift">
<Bell className="h-4 w-4" />
</Button>