mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-30 05:29:25 +02:00
19 lines
726 B
TypeScript
19 lines
726 B
TypeScript
import Footer from '~/components/Footer'
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<div
|
|
className="p-2 flex gap-2 flex-col items-center justify-center cursor-pointer"
|
|
onClick={() => (window.location.href = '/home')}
|
|
>
|
|
<img src="/project_nomad_logo.png" alt="Project Nomad Logo" className="h-40 w-40" />
|
|
<h1 className="text-5xl font-bold text-desert-green">Command Center</h1>
|
|
</div>
|
|
<hr className="text-desert-green font-semibold h-[1.5px] bg-desert-green border-none" />
|
|
<div className="flex-1 w-full bg-desert">{children}</div>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|