Date

Design showcase

This website is made with React, Next.js and Tailwind CSS. All the blog posts are written in Markdown - or actually MDX. The design is heavily inspired by the Tailwind CSS website and the greatest movie of all time - the 🐝 Bee Movie.

Below is a showcase/test of the design showing the styling of common tags and elements.

Headings

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Paragraphs

This is a parapraph.

Emphasis

Text can be bold, italic or both

Blockqoute

This is a blockquote

Ordered list

  1. First item
  2. Second item
  3. Third item
  4. Fourth item

Unordered list

  • First item
  • Second item
  • Third item
  • Fourth item

Links

This is a link 🗿

Code

Code block

for i in range(1, 101):
  if i % 3 == 0 and i % 5 == 0:
    print('FizzBuzz')
  elif i % 3 == 0:
    print('Fizz')
  elif i % 5 == 0:
    print('Buzz')
  else:
    print(str(i))

Single file

fizzbuzz.js
for (let i; i < 101; i++) {
  if (i % 3 === 0 && i % 5 === 0) console.log('FizzBuzz')
  else if (i % 3 === 0) console.log('Fizz')
  else if (i % 5 === 0) console.log('Buzz')
  else console.log(i)
}

Multiple files

Inline code

Inline code like this npm i is-odd can also be used.

Images

Bee from Unsplash

Tables

SyntaxDescriptionTest Text
HeaderTitleHere’s this
ParagraphTextAnd more

Task Lists

  • Write the press release
  • Update the website
  • Contact the media

Colors

neutral
50-900
  • 50
    #FAFAFA
  • 100
    #F5f5f5
  • 200
    #E5e5e5
  • 300
    #D4d4d4
  • 400
    #A3a3a3
  • 500
    #737373
  • 600
    #525252
  • 700
    #404040
  • 800
    #262626
  • 900
    #171717
yellow
50-900
  • 50
    #FEFCE8
  • 100
    #FEF9C3
  • 200
    #FEF08a
  • 300
    #FDE047
  • 400
    #FACC15
  • 500
    #EAB308
  • 600
    #CA8a04
  • 700
    #A16207
  • 800
    #854d0e
  • 900
    #713f12
indigo
50-900
  • 50
    #EEF2ff
  • 100
    #E0E7ff
  • 200
    #C7d2fe
  • 300
    #A5b4fc
  • 400
    #818cf8
  • 500
    #6366f1
  • 600
    #4f46e5
  • 700
    #4338ca
  • 800
    #3730a3
  • 900
    #312e81

Cards

Try swiping on the image stack to the right

Wow. It's a bee

Oh look. Another bee

Bees and flowers

Footnotes

Here’s a simple footnote,1 and here’s a longer one.bignote


  1. This is the first footnote.

  2. Here’s one with multiple paragraphs and code.

    Indent paragraphs to include them in the footnote.

    { my code }

    Add as many paragraphs as you like.