Ben Brackenbury


title: "Hello World" author: "Ben Brackenbury" date: "2025-06-14"

Welcome to my MDX page!

Subtitle

This is some bold and italics text.

This is a list in markdown:

  • One
  • Two
  • Three

Checkout my React component:

'use client'

import { useState } from 'react'

export default function Counter() {
 const [count, setCount] = useState(0)

 return (
   <div>
     <p> Count: {count} </p>
     <button onClick={() => setCount((count) => count + 1)}>Click me</button>
   </div>
 )
}
View this site on GitHub