Skip to content
Merged
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
1 change: 1 addition & 0 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"cmdk": "^1.1.1",
"convex": "^1.29.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.24",
"lucide-react": "^0.553.0",
"next": "16.0.1",
"next-themes": "^0.4.6",
Expand Down
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.
29 changes: 0 additions & 29 deletions apps/web/src/app/(Landing)/layout.tsx

This file was deleted.

111 changes: 0 additions & 111 deletions apps/web/src/app/(Landing)/page.tsx

This file was deleted.

45 changes: 45 additions & 0 deletions apps/web/src/app/(landing)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import { SignedIn, SignedOut, UserButton } from "@clerk/nextjs";
import Image from "next/image";
import Link from "next/link";
import { Button } from "@/components/ui/button";

export default function HomeLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<>
<header className="flex justify-between w-full items-center p-10 px-12 gap-4 h-16">
<div>
<Image
src="/logo.png"
alt="AlbertPlus"
width={120}
height={32}
className="h-8 w-auto block dark:hidden"
/>
<Image
src="/logo-dark.png"
alt="AlbertPlus"
width={120}
height={32}
className="h-8 w-auto hidden dark:block"
/>
</div>

<SignedOut>
<Button asChild variant="default">
<Link href="/sign-in">Sign In</Link>
</Button>
</SignedOut>

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

{children}
</>
);
}
Loading