Visual edit in Lovable

Edited UI in Lovable
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 14:52:39 +00:00
parent dda00627f8
commit 27f179e517
2 changed files with 31 additions and 78 deletions

View file

@ -1,24 +1,15 @@
import Layout from "@/components/Layout";
import InteractiveGallery from "@/components/InteractiveGallery";
const DataStructures = () => {
return (
<Layout>
return <Layout>
<div className="space-y-8">
<div className="text-center">
<h1 className="text-4xl font-bold mb-4 bg-gradient-to-r from-primary to-primary/70 bg-clip-text text-transparent">
Data Structures
</h1>
<p className="text-xl text-muted-foreground max-w-3xl mx-auto">
Master fundamental and advanced data structures through interactive manipulation and visualization.
Explore trees, graphs, heaps, hash tables, and their real-world applications.
</p>
</div>
<InteractiveGallery />
</div>
</Layout>
);
</Layout>;
};
export default DataStructures;