Testing Blog Components

March 24, 1992

Testing All Blog Components

This post demonstrates all the custom components we've created for the blog.

Table of Contents

Code Block

Here's a syntax-highlighted code block:

// A simple function in TypeScript
function greet(name: string): string {
  return `Hello, ${name}!`;
}

const user = "Reader";
console.log(greet(user));
1
2
3
4
5
6
7
8

Blockquote

Here's a blockquote with attribution:

The most beautiful thing we can experience is the mysterious. It is the source of all true art and science.

Albert Einstein, Address to the Physical Society, Berlin, 1918

And a regular markdown blockquote:

This is a regular markdown blockquote that should also use our styling

Callouts

Information

This is an informational callout. Use it for providing additional context or details.

Warning

This is a warning callout. Use it to alert readers about potential issues or things to consider.

Error

This is an error callout. Use it to highlight critical issues or problems.

Tip

This is a tip callout. Use it to provide helpful suggestions or best practices.

Link Components

Card Link

Next.js
The React framework for production

Resource Link

Check out my About page for more information.

Read More Link

See all blog posts

Video Embed

A very interesting video

Interactive Elements

Tabs

This is the content of the first tab.

Accordion

Conclusion

If all components above render correctly, then our implementation is successful!