'use client'; /** * Documentation Layout - Variant A: Clean & Minimal * * Design Philosophy: Vercel-inspired spacious, focused reading experience * * Layout Structure: * - Left Sidebar: Thin (256px) with minimal design * - Content Area: Wide margins (max-w-3xl) for comfortable reading * - Right TOC: Subtle and unobtrusive (224px) * * Responsive Behavior: * - Mobile (<768px): Single column, sidebars become overlays * - Tablet (768px-1024px): Content + TOC only * - Desktop (>1024px): Full three-column layout * * Design Characteristics: * - Generous whitespace * - Subtle borders and shadows * - Focus on content clarity * - Minimal visual noise */ import { ReactNode } from 'react'; interface DocsLayoutAProps { sidebar: ReactNode; children: ReactNode; toc: ReactNode; } export const DocsLayoutA = ({ sidebar, children, toc }: DocsLayoutAProps) => { return (