import React, { type ComponentPropsWithoutRef, type FC, type ReactNode } from 'react'; import { cn } from '../../utils/cn'; export interface HeroProps extends ComponentPropsWithoutRef<'div'> { children?: ReactNode; } export const LoginPageHero: FC = ({ children, className, ...props }) => { return ( ); };