2026-06-05 17:05:27 +00:00
|
|
|
import { ReactNode } from "react";
|
|
|
|
|
import { Header } from "./Header";
|
2026-06-05 17:45:17 +00:00
|
|
|
import ehsanLogo from "../../assets/ehsan-logo.png";
|
2026-06-05 17:05:27 +00:00
|
|
|
|
|
|
|
|
export function AppLayout({ children }: { children: ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-[100dvh] flex flex-col bg-background font-sans">
|
|
|
|
|
<Header />
|
|
|
|
|
<main className="flex-1">
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
|
|
|
|
<footer className="border-t bg-white mt-auto py-8">
|
2026-06-05 17:45:17 +00:00
|
|
|
<div className="container mx-auto px-4 flex flex-col items-center gap-3 text-center">
|
|
|
|
|
<img src={ehsanLogo} alt="EHSAN" className="h-9 w-auto object-contain" />
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
EHSAN POC © {new Date().getFullYear()}
|
|
|
|
|
</p>
|
2026-06-05 17:05:27 +00:00
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|