This is my personal website showcasing my profile and projects. Built with modern web technologies and proudly created with the assistance of AI Agents:
- Next.js - React framework for production
- Bun - Fast all-in-one JavaScript runtime and toolkit
- pnpm - Fast, disk space efficient package manager
Make sure you have the following installed:
The preferred way to run the development server is using Bun:
bun install # Install dependencies
bun dev # Start development server
Alternatively, you can use pnpm:
pnpm install # Install dependencies
pnpm dev # Start development server
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
To generate a static version of the site:
# Using Bun (recommended)
bun install
bun run build
bun run export
# Using pnpm
pnpm install
pnpm build
pnpm export
The static files will be available in the out
directory.
- Next.js Documentation - learn about Next.js features and API
- Bun Documentation - explore Bun's capabilities
- pnpm Documentation - learn about pnpm's benefits