import { motion } from 'framer-motion' import { useInView } from 'react-intersection-observer' import { FiGithub, FiExternalLink, FiFolder } from 'react-icons/fi' const PROJECTS = [ { number: '01', title: 'Healthcare Chatbot', description: 'AI-powered healthcare assistant with semantic retrieval over curated medical knowledge.', highlights: [ 'RAG pipeline with Pinecone for semantic document retrieval', 'LangChain + Groq LLM for accurate, context-aware responses', 'Streamlit UI with conversation history & real-time streaming', ], tags: ['RAG', 'Pinecone', 'LangChain', 'Groq LLM', 'Streamlit'], github: 'https://github.com/babaiii07/Agentic-HealthCare-Chatbot', demo: 'https://parthib07-multiagent-healthcare-chatbot.hf.space', accent: '#6366f1', }, { number: '02', title: 'AI Virtual Dev POD', description: 'Multi-agent SDLC automation platform where specialized agents manage the full dev lifecycle.', highlights: [ 'LangGraph orchestration with PM, Dev, QA, and DevOps agents', 'ChromaDB for persistent cross-agent memory sharing', 'Automated code generation, review, and testing pipelines', ], tags: ['Multi-Agent', 'LangGraph', 'ChromaDB', 'Agentic AI'], github: 'https://github.com/babaiii07/AI_Virtual_dev_POD', demo: 'https://agnik28-ai-virtual-pod.hf.space/', accent: '#8b5cf6', }, { number: '03', title: 'Virtual Research Assistant', description: 'Autonomous research workflow that discovers, summarizes, and synthesizes knowledge at scale.', highlights: [ 'AutoGen-powered multi-step research pipeline', 'MySQL-backed persistence for research sessions and citations', 'Groq LLM for rapid summarization and insight extraction', ], tags: ['AutoGen', 'Groq LLM', 'MySQL', 'NLP'], github: 'https://huggingface.co/spaces/parthib07/Virtual_Research_Paper_Assistant/tree/main', demo: 'https://parthib07-virtual-research-paper-assistant.hf.space', accent: '#06b6d4', }, { number: '04', title: 'OwnGPT', description: 'Secure, AI-powered platform that transforms enterprise data into actionable insights through natural language interaction.', highlights: [ 'Enterprise-grade RAG system with multi-source ingestion (documents, DBs, APIs)', 'LangGraph + LangChain orchestration for intelligent reasoning workflows', 'Secure authentication (Google Auth) with scalable FastAPI backend', ], tags: ['FastAPI', 'LangChain', 'LangGraph', 'MongoDB', 'Google Auth', 'Python'], github: null, demo: 'https://parthib07-owngpt-v2.hf.space', accent: '#10b981', }, { number: '05', title: 'CodeFusion', description: 'AI-powered vibecoding platform designed to enhance developer productivity using DeepSeek intelligence.', highlights: [ 'DeepSeek-powered code generation and intelligent assistance', 'Real-time coding environment with AI-driven suggestions and optimizations', 'Built for developers, data scientists, and AI engineers workflows', ], tags: ['DeepSeek AI', 'FastAPI', 'React', 'Python'], github: null, demo: 'https://codefusion-v2-parthib.onrender.com', accent: '#f59e0b', }, { number: '06', title: 'AnySITE', description: 'Next-gen vibecoding platform enabling rapid AI-driven web creation and prototyping.', highlights: [ 'AI-assisted website generation from minimal input (prompt → app)', 'Full-stack generation pipeline with real-time rendering', 'Designed for rapid prototyping and creative development workflows', ], tags: ['FastAPI', 'React', 'AI Models', 'Python'], github: null, demo: 'https://anysite-vibecoding-parthib.onrender.com', accent: '#f43f5e', }, ] function ProjectCard({ project, index }) { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.08 }) return (
{project.number}

{project.title}

{project.description}

{project.tags.map(tag => ( {tag} ))}
{project.github && ( Code )} Demo
) } export default function Projects() { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.05 }) return (
Projects

Featured Work

Production-grade AI systems built with cutting-edge technology.

{PROJECTS.map((p, i) => )}
View All on GitHub
) }