Some ofmy work
A handful of projects I'm genuinely proud of, written up the way I actually think about them — as code. Hit ▶ Run and watch them compile into real project cards on the right. Want to dig through everything else I've built? It's all on GitHub.
1import { render } from "portfolio";
2import { ProjectCard } from "@/components/ProjectCard";
3
4// Some of my work — see github.com/aliasgarsogiawala for everything else
5const projects = [
6 { name: "TourSafe", stack: ["Next.js", "TypeScript", "Neon"], live: "toursafe.in" },
7 { name: "ParaDoc", stack: ["Next.js", "Javascript", "Clerk"], live: "paradocc.vercel.app" },
8 { name: "DomainFlip", stack: ["Next.js", "TypeScript", "Python"], live: "domain-flipping.vercel.app" },
9 { name: "TaskNet AI", stack: ["Next.js", "TypeScript", "Convex"], live: "tasknet-ai.vercel.app" },
10 { name: "storemyapi", stack: ["TypeScript", "Node.js", "npm"], live: "www.npmjs.com/package/storemyapi" },
11 { name: "Tech Horizons Club", stack: ["TypeScript", "Next.js", "Tailwind CSS"], live: "techhorizonsclub.com" },
12 { name: "Eggstinction", stack: ["JavaScript", "Canvas", "Convex"], live: "savedategg.vercel.app" },
13 { name: "FakeGeotag", stack: ["Python", "Pillow", "Mapbox API"] },
14];
15
16// ▶ Run to compile and render all 8 projects in the output panel
17projects.forEach((project) => render(<ProjectCard {...project} />));$ node projects.js
Nothing's run yet — press ▶ Run up above and I'll compile these into real project cards.