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:
parent
666de99364
commit
76e47c5b00
5 changed files with 79 additions and 37 deletions
|
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue