2026-02-06 09:14:49 +09:00
|
|
|
import { Header } from "@/features/layout/components/header";
|
|
|
|
|
import { createClient } from "@/utils/supabase/server";
|
|
|
|
|
|
|
|
|
|
export default async function AuthLayout({
|
2026-02-05 15:56:41 +09:00
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
2026-02-06 09:14:49 +09:00
|
|
|
const supabase = await createClient();
|
|
|
|
|
const {
|
|
|
|
|
data: { user },
|
|
|
|
|
} = await supabase.auth.getUser();
|
|
|
|
|
|
2026-02-05 15:56:41 +09:00
|
|
|
return (
|
2026-02-06 09:14:49 +09:00
|
|
|
<div className="relative flex min-h-screen flex-col items-center justify-center overflow-hidden bg-linear-to-br from-gray-50 via-white to-gray-100 dark:from-black dark:via-gray-950 dark:to-gray-900">
|
|
|
|
|
{/* ========== 헤더 (홈 이동용) ========== */}
|
|
|
|
|
<Header user={user} />
|
|
|
|
|
|
2026-02-05 15:56:41 +09:00
|
|
|
{/* ========== 배경 그라디언트 레이어 ========== */}
|
|
|
|
|
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_top_right,var(--tw-gradient-stops))] from-gray-200/30 via-gray-100/15 to-transparent dark:from-gray-800/30 dark:via-gray-900/20" />
|
|
|
|
|
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_bottom_left,var(--tw-gradient-stops))] from-gray-300/30 via-gray-200/15 to-transparent dark:from-gray-700/30 dark:via-gray-800/20" />
|
|
|
|
|
|
|
|
|
|
{/* ========== 애니메이션 블러 효과 ========== */}
|
|
|
|
|
<div className="absolute left-1/4 top-1/4 h-64 w-64 animate-pulse rounded-full bg-gray-300/20 blur-3xl dark:bg-gray-700/20" />
|
|
|
|
|
<div className="absolute bottom-1/4 right-1/4 h-64 w-64 animate-pulse rounded-full bg-gray-400/20 blur-3xl delay-700 dark:bg-gray-600/20" />
|
|
|
|
|
|
2026-02-06 09:14:49 +09:00
|
|
|
{/* ========== 메인 콘텐츠 영역 (중앙 정렬) ========== */}
|
|
|
|
|
<main className="z-10 flex w-full flex-1 flex-col items-center justify-center px-4 py-12">
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
2026-02-05 15:56:41 +09:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|