'use client' import type * as React from 'react' import { cn } from '../../../utils/cn' import { OpenFrameWordmark, PoweredByFlamingo } from './auth-branding' export interface SsoAuthShellProps { /** Centered card content (OpenFrame SSO login / sign-up form). */ children: React.ReactNode className?: string } /** * Centered single-column layout for the OpenFrame SSO (IdP) screens: logo on top, * the form card centered, "Powered by Flamingo" at the bottom. No marketing panel. */ export function SsoAuthShell({ children, className }: SsoAuthShellProps) { return (