From e636df7fd1c55501718266b789752372e166cef8 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 19 Jul 2025 15:16:13 +0000 Subject: [PATCH] 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". --- src/components/InteractiveGallery.tsx | 4 ++-- src/pages/theme-pages/DataStructures.tsx | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/InteractiveGallery.tsx b/src/components/InteractiveGallery.tsx index 54b8651..89b6933 100644 --- a/src/components/InteractiveGallery.tsx +++ b/src/components/InteractiveGallery.tsx @@ -26,7 +26,7 @@ const InteractiveGallery = () => { const InteractiveComponent = selectedInteractive.component; return
- +
@@ -36,7 +36,7 @@ const InteractiveGallery = () => { } return
-

Data Structures

+

Data Structures and Algorithms

Interactive explorations of elementary data structures and algorithms.

diff --git a/src/pages/theme-pages/DataStructures.tsx b/src/pages/theme-pages/DataStructures.tsx index 617e03a..879a147 100644 --- a/src/pages/theme-pages/DataStructures.tsx +++ b/src/pages/theme-pages/DataStructures.tsx @@ -1,12 +1,13 @@ +import Layout from "@/components/Layout"; import InteractiveGallery from "@/components/InteractiveGallery"; const DataStructures = () => { return ( -
+
-
+ ); };