---
title: "Hello World, again"
description: "Working on relaunching this blog section of my site. I plan to share tutorials, videos, code snippets & write-ups. Switched over to Next.js & using Contentful as the CMS. "
author: "Romel Dris"
published: "2023-02-12T00:00:00.000-08:00"
last_updated: "2023-02-14T05:11:03.203Z"
canonical_url: "https://romeldris.ca/blog/hello-world-again"
markdown_url: "https://romeldris.ca/blog/hello-world-again.md"
categories: ["Programming","Tutorials"]
---

# Hello World, again

> Working on relaunching this blog section of my site. I plan to share tutorials, videos, code snippets & write-ups. Switched over to Next.js & using Contentful as the CMS. 

I am currently working on getting the blog section of my site up and running again. I've had multiple attempts in the past, but I am confident that this time it will stay. I have a lot of tutorials and videos planned and need a place to share code snippets and write-ups. I initially considered using Medium, but I believe building my own platform will be much more enjoyable.

I have been using [Contentful](https://contentful.com) as my CMS and it has been performing exceptionally well for me. The previous version of my site was built with Gatsby in 2020, but I have decided to migrate everything over to [Next.js](https://nextjs.org/). as it is the technology I have been using for the past few years for most of my side projects.

The code snippets of this are using prismjs and works pretty well check it out:

````
```js
import { useEffect, useState } from 'react'
import { Layout } from '@/components/layout'

export default function Home() {
  return (
    <Layout>
      Hello world!!!!
    </Layout>
  )
}
```
````

Anyways that's all for now! I'll be posting a few quick tutorials real soon around OpenAI and how I've been using it for a few small projects.

- Romel
