From d7232f8470f5ef24b4eb2240e6e686cf0a1c5daa 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:03:06 +0000 Subject: [PATCH] Refine interactive layout and content - Center cards in one-by-one mode. - Remove global header/footer from interactive pages. - Fix "School Connect" text on data structures page. - Remove binary representation interactive from data structures list. --- src/components/BinarySearchTrick.tsx | 2 +- src/components/InteractiveGallery.tsx | 10 ++-------- src/pages/theme-pages/DataStructures.tsx | 16 +++++++--------- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/src/components/BinarySearchTrick.tsx b/src/components/BinarySearchTrick.tsx index 8a33f70..01ac78d 100644 --- a/src/components/BinarySearchTrick.tsx +++ b/src/components/BinarySearchTrick.tsx @@ -231,7 +231,7 @@ const BinarySearchTrick = ({ showSocialShare = true }: BinarySearchTrickProps) = )} -
+
{getDisplayCards().map((card) => ( { } return
-

School Connect Interactives

+

Data Structures Interactives

Interactive tools and resources designed to connect theoretical concepts with practical applications in educational settings.

diff --git a/src/pages/theme-pages/DataStructures.tsx b/src/pages/theme-pages/DataStructures.tsx index e6a89a1..617e03a 100644 --- a/src/pages/theme-pages/DataStructures.tsx +++ b/src/pages/theme-pages/DataStructures.tsx @@ -1,15 +1,13 @@ -import Layout from "@/components/Layout"; import InteractiveGallery from "@/components/InteractiveGallery"; + const DataStructures = () => { - return -
-
- - -
- + return ( +
+
- ; +
+ ); }; + export default DataStructures; \ No newline at end of file