Files
geointel/src/client/components/Brand.tsx
T
Jens d5ea270329
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s
Update GeoIntel project files
2026-07-25 23:43:08 +02:00

16 lines
399 B
TypeScript

interface BrandProps {
compact?: boolean;
}
export function Brand({ compact = false }: BrandProps) {
return (
<span className={compact ? "brand-lockup compact" : "brand-lockup"}>
<img src="/dockdeck-mark.svg" alt="" width="40" height="40" />
<span>
<strong>DockDeck</strong>
{!compact && <small>Jouw digitale thuisbasis</small>}
</span>
</span>
);
}