diff --git a/src/app/page.tsx b/src/app/page.tsx index 25a549b..714451d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { ArrowRight, Box, Clock, MapPin, Network } from "lucide-react"; +import { ArrowRight, Box, Clock, MapPin, Network, GitBranch } from "lucide-react"; export default function LandingPage() { return ( @@ -32,26 +32,11 @@ export default function LandingPage() {
@@ -152,64 +85,19 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Tree Visualizer", - description: "Understand binary search trees with interactive nodes.", - media: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=y0m2ii", - }, - items: [ - { - text: "Interactive traversal", - icon: GitBranch, - }, - { - text: "Complexity analysis", - icon: Clock, - }, - ], + title: "Tree Visualizer", description: "Understand binary search trees with interactive nodes.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=y0m2ii" }, + items: [{ text: "Interactive traversal", icon: GitBranch }, { text: "Complexity analysis", icon: Clock }], reverse: false, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dm8abe&_wi=2", - imageAlt: "tree data structure code", }, { - title: "Linked List Pathing", - description: "Navigate memory blocks with our visual pointer tracer.", - media: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4yvn8w", - }, - items: [ - { - text: "Memory visualizer", - icon: Box, - }, - { - text: "Pointer logic", - icon: ArrowRight, - }, - ], + title: "Linked List Pathing", description: "Navigate memory blocks with our visual pointer tracer.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4yvn8w" }, + items: [{ text: "Memory visualizer", icon: Box }, { text: "Pointer logic", icon: ArrowRight }], reverse: true, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=56iwpc&_wi=2", - imageAlt: "tree data structure code", }, { - title: "Graph Algorithm AI", - description: "Pathfinding algorithms demonstrated on live grids.", - media: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4jo1ce", - }, - items: [ - { - text: "Dijkstra demo", - icon: MapPin, - }, - { - text: "Network load testing", - icon: Network, - }, - ], + title: "Graph Algorithm AI", description: "Pathfinding algorithms demonstrated on live grids.", media: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4jo1ce" }, + items: [{ text: "Dijkstra demo", icon: MapPin }, { text: "Network load testing", icon: Network }], reverse: false, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=vy903e&_wi=1", - imageAlt: "tree data structure code", }, ]} title="The AI Difference" @@ -219,30 +107,13 @@ export default function LandingPage() {