mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
23 lines
1.0 KiB
TypeScript
23 lines
1.0 KiB
TypeScript
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">
|
|
<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>
|
|
{/* <TanStackRouterDevtools /> */}
|
|
{/* <hr className="text-desert-green font-semibold h-[1.5px] bg-desert-green border-none" />
|
|
<div className="p-2 flex flex-col items-center justify-center ">
|
|
<p className="text-sm text-gray-900 italic">
|
|
Sapientia ianua vitae | Wisdom is the gateway to life
|
|
</p>
|
|
<p
|
|
className="text-desert-orange font-semibold text-sm italic"
|
|
>A project by Crosstalk Solutions</p>
|
|
</div> */}
|
|
</div>
|
|
)
|
|
}
|