-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
landing page done, just needs the login button sorted
- Loading branch information
1 parent
d437046
commit 6c03065
Showing
10 changed files
with
22 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
<script lang="ts"> | ||
import LogoGreen from "$lib//logos/Logo-GreenWithText.svg"; | ||
import type { User } from "lucia"; | ||
import LogoGreen from "$lib/logos/Logo-GreenWithText.svg"; | ||
import { AccountHeaderComponent } from "@/account"; | ||
interface Props { | ||
user: User | null; | ||
} | ||
const { user }: Props = $props(); | ||
</script> | ||
|
||
<header | ||
class="sticky top-0 z-50 w-full bg-[#202020] shadow-lg" | ||
class="sticky top-0 z-50 w-full shadow-lg h-28 bg-gradient-to-b from-[#202020] to-[#020202]" | ||
> | ||
<div class="items-center justify-center flex flex-row px-20 py-2"> | ||
<img src={LogoGreen} alt="JailBird Green" class="h-28 " /> | ||
<div class="flex items-center justify-end px-20 py-4 h-full"> | ||
<AccountHeaderComponent {user} avatar_size="custom" /> | ||
</div> | ||
|
||
<div class="absolute inset-0 flex items-center justify-center"> | ||
<img src={LogoGreen} alt="JailBird Green" class="h-20" /> | ||
</div> | ||
|
||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters