DEV Community

Discussion on: NgRx creator functions 101

Collapse
 
yaldram profile image
Arsalan Ahmed Yaldram

Great in-depth article sir thanks a lot.I saw your website timdeschryver.dev it is amazing especially the code highlighting on your blog is fantastic those yellow code boxes.

I saw your repo you are using sevlte, sapper, xstate and a lot of things. Please can you tell me what you have used to render your blog posts, your section titles, etc. and also how did you change the theme of your blog. I know it is the wrong place ti ask but could not resist.

Collapse
 
timdeschryver profile image
Tim Deschryver

Hi, thanks a lot! it's always fun to receive compliments!

My blog is indeed using sapper framework (so I'm automatically using svelte :) ) - it can be compared with Next.JS (for react).

I'm using XState for the state of the article - if you select text, you'll see a button to send me a message (which is in a form). To handle the transition between these states, I'm using XState. For more info see State machine code and component code.

The code blocks (and highlights) are custom made - see the code for more info. To style it i'm using Prism and a custom css

I hope this answers your question, if not feel free to ask more details.

Collapse
 
yaldram profile image
Arsalan Ahmed Yaldram

Thanks a lot sir.