aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app')
-rw-r--r--apps/web/app/favicon.icobin15406 -> 15086 bytes
-rw-r--r--apps/web/app/signin/page.tsx7
2 files changed, 2 insertions, 5 deletions
diff --git a/apps/web/app/favicon.ico b/apps/web/app/favicon.ico
index 750e3c04..d940a939 100644
--- a/apps/web/app/favicon.ico
+++ b/apps/web/app/favicon.ico
Binary files differ
diff --git a/apps/web/app/signin/page.tsx b/apps/web/app/signin/page.tsx
index 4dc81376..441187e1 100644
--- a/apps/web/app/signin/page.tsx
+++ b/apps/web/app/signin/page.tsx
@@ -1,7 +1,7 @@
import { redirect } from "next/dist/client/components/navigation";
+import HoarderLogo from "@/components/HoarderIcon";
import SignInForm from "@/components/signin/SignInForm";
import { getServerAuthSession } from "@/server/auth";
-import { PackageOpen } from "lucide-react";
export default async function SignInPage() {
const session = await getServerAuthSession();
@@ -12,10 +12,7 @@ export default async function SignInPage() {
return (
<div className="grid min-h-screen grid-rows-6 justify-center">
<div className="row-span-2 flex w-96 items-center justify-center space-x-2">
- <span>
- <PackageOpen size="60" className="" />
- </span>
- <p className="text-6xl">Hoarder</p>
+ <HoarderLogo height={62} gap="12px" />
</div>
<div className="row-span-4 px-3">
<SignInForm />