summaryrefslogtreecommitdiffhomepage
path: root/src/components/Layout.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-16 17:29:03 -0400
committerrealtradam <[email protected]>2024-06-16 17:29:03 -0400
commit7b3ccafa606d42cc4176d20abcd847c8320d2a19 (patch)
tree5937db4b16df28dd4f436f1ea11ff22f3595848c /src/components/Layout.tsx
parent60c0acd277a6cbaf215d28718bde07443901d299 (diff)
downloadmalcz.com-7b3ccafa606d42cc4176d20abcd847c8320d2a19.tar.gz
malcz.com-7b3ccafa606d42cc4176d20abcd847c8320d2a19.zip
update login url
Diffstat (limited to 'src/components/Layout.tsx')
-rw-r--r--src/components/Layout.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 6952f1e..74dbc50 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -6,12 +6,12 @@ export type userData = { userData: { name: string } };
export default function Layout ({userData}: userData)
{
return (
- <>
+ <div className="text-3xl py-10 text-center font-title">
<div id="page" className="star flex flex-row min-h-screen max-h-screen bg-amber-400 text-stone-950 text-xl bg-star bg-repeat bg-[length:170px_170px]">
<div id="sidebar" className="flex flex-row shrink-0 grow-0 h-vh w-64 items-top bg-stone-800">
<nav id="sidebar-content" dir="rtl" className="text-stone-50 p-6 w-full h-screen overflow-y-auto overflow-x-hidden">
<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> }
+ { 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=Ov23lilvF2QoyDWyY4mr" className="pb-2"> Login with Github </a> /* 74468ad0847e527262d9 */ }
<div className="text-3xl py-10 text-center font-title">Tradam</div>
<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> }/>