Personal portfolio website showcasing AI/ML engineering projects and experience.
Live: portfolio-weld-seven-71.vercel.app
- Framework: Next.js 14 (App Router)
- Content: Contentlayer + MDX
- Styling: Tailwind CSS
- Theming: next-themes (dark/light mode)
- Deployment: Vercel
# Install dependencies
npm install
# Start development server
npm run devOpen http://localhost:3000 to view the site.
npm run dev # Start development server
npm run build # Production build
npm run start # Start production server
npm run lint # Run ESLint├── content/
│ ├── blog/ # Blog posts (MDX)
│ └── projects/ # Project pages (MDX)
├── src/
│ ├── app/ # Next.js App Router pages
│ ├── components/ # React components
│ └── lib/ # Utility functions
└── public/ # Static assets
Create MDX files in content/blog/ with frontmatter:
title: "Post Title"
publishedAt: "2024-01-01"
summary: "Brief description"
tags: ["tag1", "tag2"]Create MDX files in content/projects/ with frontmatter:
title: "Project Title"
description: "Project description"
publishedAt: "2024-01-01"
tags: ["AI", "Python"]
featured: true # Optional: show on homepageMIT