My Super Awesome Website!

This is my website and it's super awesome!

2026-05-01

Sample Blog

last updated 2026-05-02

Intro paragraph with bold, italic, strikethrough, and a link.
You can also test inline code and keyboard input like Ctrl + C.


Heading 2 — Section

Heading 3 — Subsection

Heading 4 — Smaller

Heading 5 — Even Smaller
Heading 6 — Smallest

Paragraphs

This is a normal paragraph. Tailwind Typography should give it nice line height and spacing.

Another paragraph with a line break at the end of this line.
See how spacing behaves.


Blockquote

This is a blockquote.

It can span multiple lines and paragraphs.

— Someone famous


Lists

Unordered List

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

Ordered List

  1. First step
  2. Second step
    1. Nested step
    2. Another nested step
  3. Third step

Code

Inline code

Use npm install to install dependencies.

Code block

function greet(name) {
  console.log(`Hello, ${name}!`);
}

greet("World");