"use client" import * as React from "react" import { cn } from "../lib/utils" import { Terminal } from "lucide-react" export interface LoginLayoutProps { title?: React.ReactNode subtitle?: React.ReactNode brandIcon?: React.ReactNode children: React.ReactNode className?: string /** (Deprecated) terminal lines from legacy layout, kept for backwards compatibility */ terminalLines?: string[] /** (Deprecated) tagline, kept for backwards compatibility */ tagline?: React.ReactNode /** (Deprecated) footerLinks, kept for backwards compatibility */ footerLinks?: { label: string; href: string }[] } export function LoginLayout({ title = "Welcome Back", subtitle = "Sign in to your workspace.", brandIcon, children, className, }: LoginLayoutProps) { return (
{subtitle}