Logo

src/components/logo.tsx
import { Image } from '@/components/image'
interface LogoProps {
className?: string
width?: number
height?: number
dark?: boolean
}
export function Logo({
className = '',
width,
height,
dark = false,
}: LogoProps) {
return (
<Image
rounded="rounded-none"
src={dark ? '/images/logo-white.png' : '/images/logo.png'}
size="medium"
alt="Logo"
{...(width && { width })}
{...(height && { height })}
className={className}
/>
)
}

Support

Talk to the developers of this project to learn more

We have been building professional websites for big clients for over 15 years. Gallop templates and blocks is our best foundation for SEO websites and web apps.

© 2026 Web Plant Media, LLC