From 1498fd9697052861fc6f47f5903137b84a49ef3c Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 25 Dec 2025 17:04:03 +0000 Subject: [PATCH] feat: add docs-specific layout with Header and SearchPalette Restored Header and SearchPalette components for /docs/* pages while keeping the landing page (/) with its own custom header and footer. This ensures: - Landing page has the mockup-02 dark theme landing design - Docs pages have the proper documentation UI with sticky header and search - Maintains the 3-column docs layout (Sidebar + Content + TOC) Matches ui-mockup-01-documentation-page.html specification. --- src/app/docs/layout.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/app/docs/layout.tsx diff --git a/src/app/docs/layout.tsx b/src/app/docs/layout.tsx new file mode 100644 index 0000000..8d133ee --- /dev/null +++ b/src/app/docs/layout.tsx @@ -0,0 +1,16 @@ +import { Header } from '@/components/Header'; +import { SearchPalette } from '@/components/SearchPalette'; + +export default function DocsLayout({ + children +}: { + children: React.ReactNode; +}) { + return ( + <> +
+ {children} + + + ); +}