import React from "react"; import Image, { ImageProps } from "next/image"; interface LogoProps { label?: string; className?: string; imageProps?: ImageProps; } function Logo({ imageProps, ...props }: LogoProps) { return (
{/* Logo */} Follow us on Twitter
); } export default Logo;