Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Next.js portfolio template with Bootstrap styling and API routes.

Portfolio library replicating the GitHub UI, built with Next.js, TypeScript, and Tailwind CSS.
Portfolio Next is a Next.js portfolio template bootstrapped with create-next-app, combining TypeScript, API routes, and Bootstrap styling for building a personal site that can be deployed on Vercel. It uses the pages router with a TypeScript entry point at pages/index.tsx and a sample API route at pages/api/hello.ts, which serves as a template for serverless functions.
Portfolio Next is a Next.js project scaffolded with create-next-app, preconfigured for TypeScript and API routes. The template's core function is to give you a running Next.js site immediately: run npm run dev (or yarn dev) and open localhost:3000 to see the default page. Editing pages/index.tsx updates the UI with hot reload, and any file added to pages/api/ becomes an API route mapping to /api/*. According to the repository metadata, it is styled with Bootstrap and suits portfolio and Markdown-driven content.
pages/index.tsx as the homepage, supporting static generation and server-side rendering out of the box.pages/api/hello.ts, giving you compile-time checks from the start.pages/api folder is mapped to /api/*; the existing endpoint at /api/hello returns a simple JSON response you can extend.npm run dev, npm run build, and npm run start scripts from create-next-app are included./api/hello route as a pattern.pages/index.tsx to display your projects, bio, and contact links in a responsive layout.pages/api/hello.ts with your own logic, such as form handling or data fetching, and deploy it as a Vercel function.The template follows the standard create-next-app workflow: run npm run dev to start the development server, edit pages/index.tsx to change the homepage, and use pages/api for backend endpoints. When ready, deploy the same project to Vercel by connecting the repository and the platform automatically builds and serves it.
For more guidance, the README links to the Next.js documentation and the interactive Next.js tutorial, plus the Next.js deployment docs.
