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.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 15:03:06 +00:00
parent 1434c538e4
commit d7232f8470
3 changed files with 10 additions and 18 deletions

View file

@ -3,7 +3,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com
import { Input } from '@/components/ui/input';
import { Badge } from '@/components/ui/badge';
import { Search } from 'lucide-react';
import BinaryNumberGame from '@/components/BinaryNumberGame';
import BinarySearchTrick from '@/components/BinarySearchTrick';
interface Interactive {
id: string;
@ -13,12 +13,6 @@ interface Interactive {
component: React.ComponentType;
}
const interactives: Interactive[] = [{
id: 'binary-number-game',
title: 'Binary Number Representation',
description: 'Learn binary representation by expressing numbers as sums of powers of two. Toggle cards to match the target sum!',
tags: ['binary', 'math', 'numbers', 'representation', 'powers-of-two'],
component: BinaryNumberGame
}, {
id: 'binary-search-trick',
title: 'Binary Search Magic Trick',
description: 'Perform an amazing magic trick that reveals how binary numbers work. Think of a number and watch the magic happen!',
@ -43,7 +37,7 @@ const InteractiveGallery = () => {
}
return <div className="space-y-6">
<div className="space-y-4">
<h1 className="text-3xl font-bold text-foreground">School Connect Interactives</h1>
<h1 className="text-3xl font-bold text-foreground">Data Structures Interactives</h1>
<p className="text-muted-foreground text-lg">
Interactive tools and resources designed to connect theoretical concepts with practical applications in educational settings.
</p>