DEV Community

Discussion on: Finally built a portfolio/personal website. Can I get a review?

Collapse
 
aralroca profile image
Aral Roca • Edited

I recommend to use the component Link of Nextjs to navigate between pages, to avoid the full reload:

import Link from 'next/link'

// ...
<Link href="/page">
 <a>Page</a>
</Link>

Then, I recommend generating the RSS feed and Sitemap of your blog on build-time. You can look to my blog aralroca.com that I did recently (also with Next.js), and the code is github.com/aralroca/aralroca.com

Collapse
 
kartiknair profile image
Kartik Nair

Damn thanks so much I was just looking into generating an RSS feed and couldn't find much. You're a life saver! Also I'll be sure to fix the Link