Add header/footer to data structures page

Add global header and footer to the data structures page and rename the page to "Data Structures and Algorithms".
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 15:16:13 +00:00
parent c2c5f0e4bd
commit e636df7fd1
2 changed files with 5 additions and 4 deletions

View file

@ -1,12 +1,13 @@
import Layout from "@/components/Layout";
import InteractiveGallery from "@/components/InteractiveGallery";
const DataStructures = () => {
return (
<div className="min-h-screen bg-background">
<Layout>
<div className="max-w-7xl mx-auto p-6">
<InteractiveGallery />
</div>
</div>
</Layout>
);
};