mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import DocSidebar from "@/components/DocSidebar"
|
|
import type React from "react"
|
|
|
|
export default function DocsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<div className="flex flex-col md:flex-row min-h-screen pt-40 md:pt-16">
|
|
<DocSidebar />
|
|
<main className="flex-1 p-4 md:p-6 mt-4 md:mt-0">{children}</main>
|
|
</div>
|
|
)
|
|
}
|
|
|