Update blog posts

This commit is contained in:
Mikkel Svartveit 2024-01-30 09:22:14 -08:00
parent c051eea344
commit 302f8d5a55
4 changed files with 5 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View file

@ -1,5 +1,5 @@
---
intro: "How I built this website, why I picked the Astro framework, and the reason Tailwind is the best way to write CSS in 2023!"
intro: "Thanks for checking out my brand new portfolio website! In this write-up, Ill walk through the purpose of this website, explain the frameworks and tools I used to build and deploy it, as well as some challenges I discovered along the way. Lets get started!"
image: "@assets/images/rocket.png"
date: 2023-10-30
---

View file

@ -1,11 +1,13 @@
---
intro: "I'm intruiged by React Server Components, and Partial Prerendering is very clever. However, Next.js still has a long way to go."
intro: "Next.js 14 has been out for over a month now, and Ive had some time to read and reflect on the new features. I am still intrigued by the integration with React Server Components introduced in Next.js 13, and I genuinely believe that React and Next brings novel stuff to the table that you just cant find in other frameworks right now. However, even after version 14, I still have the feeling that Next.js isnt quite ready for prime time."
image: "@assets/images/next14.png"
date: 2023-12-12
---
# Next.js 14 Is Really Cool. But It's Not Ready Yet.
![Next.js Conf](@assets/images/nextjs-conf.jpeg)
Next.js 14 has been out for over a month now, and Ive had some time to read and reflect on the new features. I am still intrigued by the integration with React Server Components introduced in Next.js 13, and I genuinely believe that React and Next brings novel stuff to the table that you just cant find in other frameworks right now. However, even after version 14, I still have the feeling that Next.js isnt quite ready for prime time.
## New stuff in version 14

View file

@ -48,7 +48,7 @@ const articles = await getCollection("blog");
{title}
</h2>
<p class="text-gray-500 sm:line-clamp-3">{intro}</p>
<p class="line-clamp-3 text-gray-500">{intro}</p>
</div>
</a>
);