diff options
author | polwex <polwex@sortug.com> | 2025-06-27 16:34:09 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-06-27 16:34:09 +0700 |
commit | 645e815ebe11dbb86781c3eb645d3d67cd62cf7c (patch) | |
tree | 347b03391a5245de8a43198c9646719c2e892373 /lib/pages/components/SiteTitle.mlx | |
parent | 8be9a806a93b02eada372f3993c34bc6b2f26fea (diff) |
nice nice. lsp still doesnt work tho
Diffstat (limited to 'lib/pages/components/SiteTitle.mlx')
-rw-r--r-- | lib/pages/components/SiteTitle.mlx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/pages/components/SiteTitle.mlx b/lib/pages/components/SiteTitle.mlx new file mode 100644 index 0000000..cfee4f3 --- /dev/null +++ b/lib/pages/components/SiteTitle.mlx @@ -0,0 +1,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> +;; |