import { motion } from 'framer-motion' import { Link } from 'react-router-dom' import { ReactNode } from 'react' import './AuthShell.css' interface AuthShellProps { children: ReactNode title: string subtitle: string footerText: string footerLink: string footerLinkText: string } function AuthShell({ children, title, subtitle, footerText, footerLink, footerLinkText }: AuthShellProps) { return (
Co-Code GGW

{title}

{subtitle}

{children}

{footerText}{' '} {footerLinkText}

) } export default AuthShell