9 lines
304 B
TypeScript
9 lines
304 B
TypeScript
import Image from "next/image";
|
|
|
|
export function BrandLogo({ compact = false }: { compact?: boolean }) {
|
|
return (
|
|
<div className="flex items-center gap-3">
|
|
<Image src="/schubamed-logo.svg" alt="SCHUBAMED Validation Suite" width={compact ? 180 : 240} height={64} priority />
|
|
</div>
|
|
);
|
|
}
|