2024-03-07 11:48:34 +01:00
|
|
|
import Header from "./Header";
|
|
|
|
import Footer from "./Footer";
|
2024-03-07 10:05:45 +01:00
|
|
|
|
2024-03-07 11:48:34 +01:00
|
|
|
function BasicWindow({
|
|
|
|
content,
|
|
|
|
buttons,
|
|
|
|
}: {
|
|
|
|
content: React.ReactNode;
|
|
|
|
buttons: React.ReactNode;
|
|
|
|
}): JSX.Element {
|
2024-03-07 10:05:45 +01:00
|
|
|
return (
|
|
|
|
<div className="font-sans flex flex-col h-screen bg-white border-2 border-black overflow-auto pt-[110px]">
|
2024-03-18 17:20:29 +01:00
|
|
|
<Header />
|
2024-03-07 11:48:34 +01:00
|
|
|
<div className="flex flex-col items-center flex-grow">{content}</div>
|
|
|
|
<Footer>{buttons}</Footer>
|
2024-03-07 10:05:45 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-03-07 11:48:34 +01:00
|
|
|
export default BasicWindow;
|