import type { FunctionComponent } from "react"; import Image from "next/image"; import clsx from "clsx"; type Props = { className?: string; }; const Logo: FunctionComponent = ({ className }) => (
app logo
); export default Logo;