import Image from "next/image"; import { Poppins } from "next/font/google"; import { cn } from "@/lib/utils"; const font = Poppins({ subsets: ["latin"], weight: ["400", "600"], }); interface LogoProps { text?: string; showText?: boolean; showCopyright?: boolean; } const Logo = ({ text, showText, showCopyright }: LogoProps) => { return (
{text}
)} {showCopyright && (