Personal blog website built with Next.js 15 and React 19.
- Next.js 15.3.4 with App Router
- React 19 with React Compiler
- TypeScript 5
- Tailwind CSS 4
- Framer Motion for animations
- MDX for blog posts
- Drizzle ORM with PostgreSQL
- pnpm for package management
First, install pnpm if you haven't already:
npm install -g pnpmThen install dependencies and start the development server:
pnpm install
pnpm devOpen http://localhost:3000 to view the result.
pnpm dev # Start development server (with Turbopack)
pnpm build # Build for production
pnpm start # Start production server
pnpm lint # Run ESLint
pnpm clean # Clean cache files
pnpm type-check # TypeScript type checking
pnpm db:gen # Generate Drizzle migrations
pnpm db:mig # Run Drizzle migrationsTo learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.