Starting my Portfolio with Next.js 16
Published
Read Time5 min read
BE
Behzat Bilgin ErdemBuilding a portfolio in 2026 is an exciting journey! With the release of Next.js 16 and React 19, the ecosystem has shifted towards more robust server-side features and improved performance.
Next.js 16 introduces even better caching mechanisms and a more refined App Router. Combined with Tailwind CSS v4, the development experience is faster than ever.
The architecture of this portfolio is built around a clean, modular structure. Sections like Intro, Projects, and Blog are separated into their own components, making it easy to maintain and scale.
export default function Home() {
return (
<main>
<Intro />
<Projects />
<Skills />
<Blogs />
<Contact />
</main>
);
}
This is just the beginning. In the coming months, I'll be adding more features like MDX support (which you are seeing right now!) and deeper integration with Strapi.
Stay tuned for more updates!