import { Poppins } from 'next/font/google' import { cn } from '@/lib/utils' const font = Poppins({ subsets: ['latin'], weight: ['600'], }) type Props = { label: string, title: string } export const Header = ({ label, title }: Props) => { return (

🔐 {title || 'Auth'}

{label}

) }