import Image from "next/image"; import Link from "next/link"; import { SITE } from "@/lib/constants"; import { isUploadAssetPath } from "@/lib/image-url"; type Props = { logoUrl?: string; }; export function SiteHeader({ logoUrl = SITE.logoUrl }: Props) { return (
{SITE.name}
); }