Test Post
This is just a test post!
Wednesday, January 24, 2024
1 minute read
Next.js has two forms of pre-rendering: Static Generation and Server-side Rendering. The difference is in when it generates the HTML for a page.
- Static Generation is the pre-rendering method that generates the HTML at build time. The pre-rendered HTML is then reused on each request.
- Server-side Rendering is the pre-rendering method that generates the HTML on each request.
Skeleton component:
Heading 1
Heading 2
Heading 3
Heading 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Unordered list:
- a
- b
Ordered list:
- one
- two
bold and italic and bold italic
strikethrough
Horizontal rule:
Blockquote:
Lorem ipsum dolor sit amet, consectetur adipiscing elit
Lorem ipsum dolor sit amet, consectetur adipiscing elit
indented code block:
return false;
backtick code block:
return true;Image: