Projects

Currently exploring multiple ideas, with several still under development.

Droply | Modern Cloud Storage
A secure, fast, and modern cloud storage platform designed for seamless image management.Learn More...
QuickCourt | Real-Time Court Booking
A real-time multi-sport court discovery, booking, and engagement platform with payments and gamification.Learn More...
FinTrack | AI-Powered Personal Finance
Transform your financial life with intelligent budgeting, expense tracking, and personalized AI insights.Learn More...
AI Fitness Trainer | AI-Powered Health & Fitness
Transform your body with advanced AI technology — personalized workouts, nutrition tracking, and real-time progress monitoring.Learn More...
Reflect | A Mindful Journaling App
A minimal journaling app designed to help users practice mindfulness, track moods, and reflect on their emotional journey.Learn More...
Persona-Driven Document Intelligence System
An AI-powered platform that tailors document understanding and responses based on user personas, enabling context-aware insights.Learn More...
NxtWatch | A YouTube Clone
A React.js-based video streaming platform replicating YouTube’s core features with authentication, theming, and API-driven content.Learn More...
NYC Airbnb Listings 2024 | Exploratory Data Analysis
A comprehensive exploratory data analysis of New York City Airbnb listings, uncovering insights into pricing, availability, host activity, and neighborhood trends.Learn More...

projects.ts

const projects = [
  {
    title: "Droply | Modern Cloud Storage",
    slug: "Droply",
    tagline: "A secure, fast, and modern cloud storage platform for images.",
    techStack: ["Next.js", "React", "TypeScript", "Tailwind CSS", "PostgreSQL (Neon)", "Drizzle ORM"],
    links: { live: "https://droply-main-five.vercel.app", github: "https://github.com/PreetKot/Droply" },
  },
  {
    title: "QuickCourt | Real-Time Court Booking",
    slug: "QuickCourt",
    tagline: "Real-time court discovery, booking, and engagement with payments.",
    techStack: ["React", "Tailwind", "Express", "Prisma", "PostgreSQL", "Razorpay"],
    links: { live: "https://quick-court-ten.vercel.app/", github: "https://github.com/PreetKot/QuickCourt" },
  },
  {
    title: "FinTrack | AI-Powered Personal Finance",
    slug: "FinTrack",
    tagline: "Personal finance app with AI-driven insights and budgeting.",
    techStack: ["Next.js", "OpenAI", "Drizzle ORM", "NeonDB"],
    links: { live: "https://fin-track-rust.vercel.app/", github: "https://github.com/PreetKot/FinTrack" },
  },
  {
    title: "Reflect | Mindful Journaling",
    slug: "reflect",
    tagline: "A minimal journaling app for mood tracking and reflection.",
    techStack: ["Next.js", "TypeScript", "Tailwind"],
    links: { live: "https://reflect-journal-app-git-master-preet-kotmires-projects.vercel.app/", github: "https://github.com/PreetKot/Reflect-journal-app-" },
  },
  {
    title: "NYC Airbnb Listings 2024 | EDA",
    slug: "nyc-airbnb-eda",
    tagline: "Exploratory Data Analysis of NYC Airbnb listings",
    techStack: ["Python", "Pandas", "Seaborn", "Folium"],
    links: { github: "https://github.com/PreetKot/NYC-AirBNB-EDA" },
  },
];

console.log("Projects:");
projects.forEach(p => console.log('- ' + p.title + ' — ' + (p.links.github || p.links.live)));