mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 19:49:25 +01:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import Footer from '~/components/Footer'
|
|
|
|
export default function MapsLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<div className="flex-1 w-full bg-desert">{children}</div>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|