Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added apps/web/public/feature.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/web/public/features2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/web/public/logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/web/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
111 changes: 0 additions & 111 deletions apps/web/src/app/(Landing)/page.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,35 @@ export default function HomeLayout({
}>) {
return (
<>
<header className="flex justify-end items-center p-4 gap-4 h-16">
<header className="flex justify-between w-full items-center p-10 px-12 gap-4 h-16">
<div>
<img
src="/logo.png"
alt="AlbertPlus"
className="h-8 block dark:hidden"
/>
<img
src="/logo-dark.png"
alt="AlbertPlus"
className="h-8 hidden dark:block"
/>
</div>

<SignedOut>
<Button
asChild
variant="outline"
className="bg-white hover:bg-gray-50"
className="bg-[#9043FF] hover:bg-[#6d44a7] dark:bg-[#9043FF] dark:hover:bg-[#af77ff] text-white"
>
<Link href="/sign-in">Sign In</Link>
</Button>
</SignedOut>

<SignedIn>
<UserButton />
</SignedIn>
</header>

{children}
</>
);
Expand Down
Loading
Loading