19 lines
558 B
TypeScript
19 lines
558 B
TypeScript
|
|
import { ReactNode } from "react";
|
||
|
|
import { Header } from "./Header";
|
||
|
|
|
||
|
|
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">
|
||
|
|
<div className="container mx-auto px-4 text-center text-sm text-muted-foreground">
|
||
|
|
EHSAN POC © {new Date().getFullYear()}
|
||
|
|
</div>
|
||
|
|
</footer>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|