Files
prowler/ui/components/auth/oss/auth-layout.tsx
2026-07-16 16:58:00 +02:00

45 lines
1.5 KiB
TypeScript

import { ReactNode } from "react";
import { ThemeSwitch } from "@/components/ThemeSwitch";
import { AuthBrand } from "./auth-brand";
interface AuthLayoutProps {
title: string;
footer?: ReactNode;
children: ReactNode;
}
export const AuthLayout = ({ title, footer, children }: AuthLayoutProps) => {
return (
<div className="relative flex min-h-screen w-full overflow-x-hidden overflow-y-auto">
<div className="relative flex w-full flex-col items-center justify-center px-4 py-32">
{/* Background Pattern */}
<div
className="absolute inset-0 mask-[radial-gradient(ellipse_50%_50%_at_50%_50%,#000_10%,transparent_80%)] bg-size-[16px_16px]"
style={{
backgroundImage:
"radial-gradient(var(--bg-button-primary) 1px, transparent 1px)",
}}
></div>
<AuthBrand className="mb-8" />
{/* Auth Form Container */}
<div className="border-border-neutral-secondary dark:bg-bg-neutral-primary/85 relative z-10 flex w-full max-w-sm flex-col gap-4 rounded-[14px] border bg-white/90 px-8 py-10 shadow-sm md:max-w-md">
{/* Header with Title and Theme Toggle */}
<div className="flex items-center justify-between">
<p className="pb-2 text-xl font-medium">{title}</p>
<ThemeSwitch aria-label="Toggle theme" />
</div>
{/* Content */}
{children}
</div>
{footer && <div className="relative z-10 mt-6">{footer}</div>}
</div>
</div>
);
};