Refactoring

This commit is contained in:
aronmal 2023-02-08 20:17:02 +01:00
parent bf74ff9e68
commit 20d1fd3094
Signed by: aronmal
GPG key ID: 816B7707426FC612
20 changed files with 282 additions and 253 deletions

View file

@ -0,0 +1,17 @@
import React from "react"
function Logo() {
return (
<div className="flex flex-row bg-shield-gray bg-[url('/assets/shield.png')] bg-cover bg-no-repeat">
<div className="flex flex-col items-center justify-between">
<h1 className="font-checkpoint my-4 mx-32 border-y-4 border-slate-700 text-center text-6xl leading-tight tracking-widest">
Leaky
<br />
Ships
</h1>
</div>
</div>
)
}
export default Logo