completionId: cgen-8fd1a7cbde2f471eb122918a7b5148ce
cgen-8fd1a7cbde2f471eb122918a7b5148ce
This commit is contained in:
parent
36cf65aa60
commit
0bedd5a267
1 changed files with 13 additions and 1 deletions
|
|
@ -132,7 +132,19 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
|||
Access any section without leaving your flow.
|
||||
</SheetDescription>
|
||||
</SheetHeader>
|
||||
<nav className="mt-6 flex flex-col gap-2" />
|
||||
<nav className="mt-6 flex flex-col gap-1">
|
||||
{(user ? userNavigation : navigation).map((item) => (
|
||||
<SheetClose key={item.href} asChild>
|
||||
<Link
|
||||
to={item.href}
|
||||
onClick={scrollToTop}
|
||||
className="rounded-lg px-3 py-2 text-sm font-medium text-muted-foreground transition-colors hover:bg-background/50 hover:text-aethex-200"
|
||||
>
|
||||
{item.name}
|
||||
</Link>
|
||||
</SheetClose>
|
||||
))}
|
||||
</nav>
|
||||
<div className="mt-8 space-y-3 border-t border-border/40 pt-4">
|
||||
{loading ? (
|
||||
<div className="space-y-2">
|
||||
|
|
|
|||
Loading…
Reference in a new issue