Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/app/(marketing)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PageTransition } from "@/components/layout/page-transition";
export default function MarketingLayout({ children }: { children: ReactNode }) {
return (
<CommandMenuProvider>
<div className="dark bg-background text-foreground min-h-dvh overflow-x-hidden">
<div className="bg-background text-foreground min-h-dvh overflow-x-hidden">
<NavigationBar stars={null} />
<main>
<PageTransition>{children}</PageTransition>
Expand Down
3 changes: 3 additions & 0 deletions apps/web/src/components/layout/navigation-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { Button } from "@/components/ui/button";
import { BrandMenu } from "@/components/web/brand-menu";
import { URLs } from "@/lib/consts";

import { ThemeToggle } from "../theme-toggle";

// ─── Shared nav link ─────────────────────────────────────────────────

interface NavItem {
Expand Down Expand Up @@ -223,6 +225,7 @@ export function NavigationBar({ stars: _stars }: { stars: number | null }) {
<Github className="size-3.5" />
<span>GitHub</span>
</Button>
<ThemeToggle />
</div>
</div>
</SectionShell>
Expand Down
Loading