import { Poppins } from "next/font/google"; import { cn } from "@/lib/utils"; const font = Poppins({ subsets: ["latin"], weight: ["600"] }) interface HeaderProps { label: string } export const Header = ({ label }: HeaderProps) => { return (

Login

{label}

) }