Halves component source
components/halves/BrandLockup.tsx
import Image from "next/image";
export function BrandLockup({
priority = false,
className = "",
}: {
priority?: boolean;
className?: string;
}) {
return (
<Image
className={className}
src="/brand/logo-lockup-primary-red.png"
alt="Halves"
width={2065}
height={706}
priority={priority}
sizes="(max-width: 760px) 86vw, 760px"
/>
);
}