completionId: cgen-08ae7be3d63a4c55a189cd4cbe77b21e

cgen-08ae7be3d63a4c55a189cd4cbe77b21e
This commit is contained in:
Builder.io 2025-11-10 20:02:18 +00:00
parent eace1b7120
commit 6cd848b67b

View file

@ -210,29 +210,26 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
</SheetTrigger> </SheetTrigger>
<SheetContent <SheetContent
side="left" side="left"
className="bg-background/95 backdrop-blur-xl border-border/40" className="bg-black/98 backdrop-blur-lg border-gray-800/50 p-4"
> >
<SheetHeader className="text-left"> <SheetHeader className="text-left mb-4">
<SheetTitle>Navigate AeThex</SheetTitle> <SheetTitle className="text-sm font-semibold">Navigate</SheetTitle>
<SheetDescription>
Access any section without leaving your flow.
</SheetDescription>
</SheetHeader> </SheetHeader>
<nav className="mt-6 flex flex-col gap-1"> <nav className="flex flex-col gap-0.5 mb-4">
{(user ? userNavigation : publicNavigation).map((item) => ( {(user ? userNavigation : publicNavigation).map((item) => (
<SheetClose key={item.href} asChild> <SheetClose key={item.href} asChild>
<Link <Link
to={item.href} to={item.href}
onClick={scrollToTop} 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" className="rounded-md px-3 py-2 text-xs font-medium text-gray-400 hover:text-white hover:bg-gray-800/50 transition-colors"
> >
{item.name} {item.name}
</Link> </Link>
</SheetClose> </SheetClose>
))} ))}
</nav> </nav>
<div className="mt-8 space-y-3 border-t border-border/40 pt-4"> <div className="border-t border-gray-800/50 pt-3 space-y-2">
{loading ? ( {loading ? (
<div className="space-y-2"> <div className="space-y-2">
<div className="h-4 w-32 animate-pulse rounded bg-border/40" /> <div className="h-4 w-32 animate-pulse rounded bg-border/40" />