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 (
Logo Logo {showText && (

{text}

)} {showCopyright && (
© {new Date().getFullYear()} G-SPACE, Inc
)}
); }; export default Logo;