Let’s build a Shopping Cart website with SolidJS and Bootstrap – Part 1

Let’s build a Shopping Cart website with SolidJS and Bootstrap – Part 1

So it’s been a while since I’ve posted a tutorial. I have been stagnant for a while, just using the same technologies for work and personal projects. Although recently, one framework caught my eye – SolidJS. It claims to have “true” reactivity and addresses many of the things I don’t like about React (such as […]

Easy Comments Area for the Single page – using Next.js

Easy Comments Area for the Single page – using Next.js

Now that we’ve got our basic single component (named [slug].js), which displays a single post, let’s look at how easy it is to add the comments area. First, let’s build 2 components: 1) CommentList.js and 2) CommentForm.js. In Next.js, when creating components that doesn’t use a route – we place them in the “components” directory. […]