import * as React from "react"; import { cn } from "@/lib/utils"; export type AuthPageLayoutProps = { logo?: React.ReactNode; title?: string; subtitle?: string; wide?: boolean; className?: string; children: React.ReactNode; }; export function AuthPageLayout({ logo, title, subtitle, wide = false, className, children, }: AuthPageLayoutProps) { return (
{subtitle}
)}