mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-07-01 13:46:53 +00:00
update
This commit is contained in:
parent
90ec250f92
commit
27dab58140
@ -1,15 +1,15 @@
|
||||
import DocSidebar from "@/components/DocSidebar"
|
||||
import type React from "react"
|
||||
import DocSidebar from "@/components/DocSidebar"
|
||||
import Footer from "@/components/footer"
|
||||
|
||||
export default function DocsLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
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 className="flex flex-col min-h-screen bg-white text-gray-900">
|
||||
<div className="flex flex-col md:flex-row flex-1">
|
||||
<DocSidebar />
|
||||
<main className="flex-1 p-4 md:p-6">{children}</main>
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user