import { ExternalLink, Github, Laptop } from "lucide-react"; import { motion } from "framer-motion"; import { HoverButton } from "@/components/ui/hover-button"; import { AnimatedSection, AnimatedContainer, AnimatedItem } from "@/components/ui/animated-section"; import { fadeInUp, slideInUp, staggerContainer, staggerItem } from "@/lib/animations"; import { useParallax } from "@/hooks/useScrollAnimation"; const Projects = () => { const projects = [ { id: 1, title: "AI-powered content generation", description: "Creator AI is an AI-powered content generation application", image: "https://i.ibb.co/3J1LhgT/Screenshot-2025-11-13-011217.png", tech: ["React", "Liveblocks", "Yjs", "Drizzle", "Node.js"], github: "https://github.com/Abhishek-ch30/Ai_automation", demo: "https://ai-automation-1vmt.onrender.com/" }, { id: 2, title: "Business Website", description: "Built for IT solution business to provide web app development services", image: "https://i.ibb.co/CddH1Rr/Screenshot-2025-11-13-011605.png", tech: ["React", "Tailwind CSS", "Supabase"], github: "https://github.com/Abhishek-ch30/ElevateEdge_main_web", demo: "https://elevate-edge-main-web.vercel.app/" }, { id: 3, title: "Student Portal", description: "Centralized platform for students to access resources, assignments, and announcements.", image: "https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=800&q=80", tech: ["Vue.js", "Firebase", "Tailwind CSS"], github: "#", demo: "#", author: "Team Nova", }, { id: 4, title: "Algorithm Visualizer", description: "Interactive tool to visualize sorting and searching algorithms with step-by-step execution.", image: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80", tech: ["React", "D3.js", "Framer Motion"], github: "#", demo: "#", author: "Team Eclipse", }, ]; const { ref: parallaxRef, offset } = useParallax(0.3); return (

Project Showcase

Innovative projects built by our talented members

{projects.map((project, index) => (
{project.author}
{project.title}

{project.description}

{project.tech.map((tech) => ( {tech} ))}
))}
); }; export default Projects;