summaryrefslogtreecommitdiff
path: root/lib/pages/components/SiteTitle.mlx
blob: cfee4f3b5346d16c9cbfc75d97f6a4ec21dd4835 (plain)
1
2
3
4
5
6
7
8
9
10
let[@react.component] make () =
  <div className="text-center mb-8">
    <a href="/">
      <h1 className="text-5xl text-gray-900 mb-2 hover:text-gray-700 transition-colors">
        (React.string "BLOODY SHOVEL 5")
      </h1>
    </a>
    <p className="text-gray-600 text-2xl italic">(React.string "Nemo nos Salvabit")</p>
  </div>
;;