summaryrefslogtreecommitdiffhomepage
path: root/src/components/Layout.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-16 16:49:14 -0400
committerrealtradam <[email protected]>2024-06-16 16:49:14 -0400
commitc72edf37baf307322b49b7c75c59d077dda9bc83 (patch)
treeadfd5bd8b318c2d0ac6c63c6c81848d6c35dfe1c /src/components/Layout.tsx
parentee6c193c97e29d1c41a0886b380f54d75bb3120c (diff)
downloadmalcz.com-c72edf37baf307322b49b7c75c59d077dda9bc83.tar.gz
malcz.com-c72edf37baf307322b49b7c75c59d077dda9bc83.zip
updated upload
Diffstat (limited to 'src/components/Layout.tsx')
-rw-r--r--src/components/Layout.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 50a3fd7..6952f1e 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -13,7 +13,7 @@ export default function Layout ({userData}: userData)
<div dir='ltr'>
{ userData.name ? <div className="flex items-end gap-2 pb-2"> <div className="text-xs"> Logged in as: </div> <div>{userData.name}</div> </div> : <a href="https://github.com/login/oauth/authorize?client_id=74468ad0847e527262d9" className="pb-2"> Login with Github </a> }
<div className="text-3xl py-10 text-center font-title">Tradam</div>
- <div className="flex flex-col items-center gap-1 w-full">
+ <div className="flex flex-col items-center gap-1">
<Button link={ <Link to="/" className="absolute flex top-0 left-0 w-36 h-16 text-stone-50 bg-transparent justify-center items-center" role="button"><div className="h-min">About Me</div></Link> }/>
<Button link={ <Link to="/blogs" className="absolute flex top-0 left-0 w-36 h-16 text-stone-50 bg-transparent justify-center items-center" role="button"><div className="h-min">Blog</div></Link> }/>
<Button link={ <Link to="/games" className="absolute flex top-0 left-0 w-36 h-16 text-stone-50 bg-transparent justify-center items-center" role="button"><div className="h-min">Games</div></Link> }/>