Redesign navigation, home overview, user portrait, and valuation pages with improved functionality and responsive design. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import type React from "react"
|
|
|
|
export default function DocumentationLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <div className="min-h-screen bg-gray-50">{children}</div>
|
|
}
|