diff --git a/packages/shared/src/login/page.tsx b/packages/shared/src/login/page.tsx
index 7ee85b2e..3164c193 100644
--- a/packages/shared/src/login/page.tsx
+++ b/packages/shared/src/login/page.tsx
@@ -2,6 +2,7 @@ import Link from "next/link";
import dynamic from "next/dynamic";
import { redirect } from "next/navigation";
import { LoginForm } from "./components/form";
+import { cn } from "@umamin/shared/lib/utils";
import { getSession } from "@umamin/shared/lib/auth";
const BrowserWarning = dynamic(
@@ -11,8 +12,10 @@ const BrowserWarning = dynamic(
export default async function Login({
redirectPath,
+ className,
}: {
redirectPath: string;
+ className?: string;
}) {
const { user } = await getSession();
@@ -21,27 +24,28 @@ export default async function Login({
}
return (
- <>
+
-
-
-
- Umamin Account
-
-
- Proceed with your Umamin v2.0 profile
-
-
-
+
+
+ Continue with Umamin
+
+
+ Proceed with your created Umamin Account
+
+
-
- Don't have an account?{" "}
-
- Sign up
-
-
-
- >
+
+
+
+ Don't have an account?{" "}
+
+ Sign up
+
+
+
);
}
diff --git a/packages/shared/src/register/loading.tsx b/packages/shared/src/register/loading.tsx
index d623ffdd..a095cf25 100644
--- a/packages/shared/src/register/loading.tsx
+++ b/packages/shared/src/register/loading.tsx
@@ -2,7 +2,7 @@ import { Skeleton } from "@umamin/ui/components/skeleton";
export default function Loading() {
return (
-
+
diff --git a/packages/shared/src/register/page.tsx b/packages/shared/src/register/page.tsx
index ef2f2566..92c0a310 100644
--- a/packages/shared/src/register/page.tsx
+++ b/packages/shared/src/register/page.tsx
@@ -1,6 +1,7 @@
import Link from "next/link";
import dynamic from "next/dynamic";
import { redirect } from "next/navigation";
+import { cn } from "@umamin/shared/lib/utils";
import { RegisterForm } from "./components/form";
import { getSession } from "@umamin/shared/lib/auth";
@@ -11,8 +12,10 @@ const BrowserWarning = dynamic(
export default async function Register({
redirectPath,
+ className,
}: {
redirectPath: string;
+ className?: string;
}) {
const { user } = await getSession();
@@ -21,7 +24,9 @@ export default async function Register({
}
return (
-