feat: add logo and favicon (#238)

This commit is contained in:
Guillaume 2025-06-09 16:30:03 +02:00 committed by GitHub
parent 0c87f3e6ec
commit e36193a8c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 67 additions and 2 deletions

10
app/components/Logo.tsx Normal file
View file

@ -0,0 +1,10 @@
import cn from '~/utils/cn';
import LogoSvg from '../../public/logo-light.svg';
export interface LogoProps {
className?: string;
}
export default function Logo({ className }: LogoProps) {
return <img alt="Logo" className={cn(className)} src={LogoSvg} />;
}