2026-06-07 03:58:32 -04:00
|
|
|
import Link from "next/link";
|
2026-06-20 20:58:14 -04:00
|
|
|
import { Logo } from "@/components/ui/logo";
|
2026-06-07 03:58:32 -04:00
|
|
|
|
|
|
|
|
export default function AuthLayout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="relative flex min-h-screen flex-col items-center justify-center bg-secondary px-4 py-12">
|
|
|
|
|
<div className="pointer-events-none absolute inset-0 bg-hero-wash" />
|
2026-06-20 20:58:14 -04:00
|
|
|
<Link href="/" className="relative mb-8 flex items-center" aria-label="Podcast Distribution AI">
|
|
|
|
|
<Logo className="h-8 w-auto" />
|
2026-06-07 03:58:32 -04:00
|
|
|
</Link>
|
|
|
|
|
<div className="relative w-full max-w-md">{children}</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|