Add common header and footer

Implement a common header and footer for all pages except interactive pages. The footer will initially contain placeholder text.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 13:39:51 +00:00
parent 666de99364
commit 76e47c5b00
5 changed files with 79 additions and 37 deletions

View file

@ -1,10 +1,14 @@
import Layout from "@/components/Layout";
import InteractiveGallery from "@/components/InteractiveGallery";
const SchoolConnect = () => {
return (
<div className="container mx-auto px-4 py-8">
<InteractiveGallery />
</div>
<Layout>
<div className="container mx-auto px-4 py-8">
<InteractiveGallery />
</div>
</Layout>
);
};