import { useState, useEffect } from "react";
import { Project } from "@/types";
 
const Projects = () => {
// Featured projects - Hover to preview
 
return (
<div className="projects-container">
 
<ProjectCard
title={
"Ehliyet Rehberim"

// Full-featured driving license exam prep app published on Google Play with a 5.0 star rating. Includes timed practice exams, progress tracking, and offline support.

}
tech={["Flutter", "Dart", "Firebase", "Google Play"]}
/>
 
<ProjectCard
title={
"FlowState AI"

// AI-powered user behavior analysis tool that identifies individuals through keystroke dynamics patterns. Uses machine learning for real-time typing biometrics.

}
tech={["Python", "scikit-learn", "Pandas", "AI/ML"]}
/>
 
<ProjectCard
title={
"Stremio Dual Subtitles"

// Stremio addon enabling dual subtitle display for language learners. Watch any content with two languages simultaneously. Deployed on Vercel with active users.

}
tech={["JavaScript", "Node.js", "Stremio SDK", "Vercel"]}
/>
 
<ProjectCard
title={
"Lensify OCR Scanner"

// High-performance mobile OCR scanner with handwriting recognition, batch document scanning, and PDF export. Built with Google ML Kit for on-device processing.

}
tech={["Flutter", "Dart", "ML Kit", "OCR"]}
/>
 
<ProjectCard
title={
"Nexus Analytics"

// Real-time analytics dashboard with interactive data visualizations, filterable metrics, and responsive design. Built with modern TypeScript architecture.

}
tech={["TypeScript", "React", "Tailwind CSS", "Charts"]}
/>
 
<ProjectCard
title={
"Gesture Groove"

// Computer vision system that controls music playback through real-time hand gesture recognition. Final project for Image Processing course using MediaPipe.

}
tech={["Python", "OpenCV", "MediaPipe", "NumPy"]}
/>
 
<ProjectCard
title={
"Image Processing Lab"

// Collection of image processing techniques and experiments including edge detection, filtering, morphological operations, and histogram analysis.

}
tech={["Python", "Jupyter", "OpenCV", "NumPy"]}
/>
 
<ProjectCard
title={
"Campus Marketplace"

// Full-stack second-hand marketplace platform for university students. Features user auth, product listings, search/filter, and a messaging system.

}
tech={["PHP", "MySQL", "HTML/CSS", "JavaScript"]}
/>
 
</div>
);
};
 
export default Projects;