feat: add logo and favicon (#238)
This commit is contained in:
parent
0c87f3e6ec
commit
e36193a8c0
8 changed files with 67 additions and 2 deletions
10
app/components/Logo.tsx
Normal file
10
app/components/Logo.tsx
Normal 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} />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue