docs: prepping for beta release

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-11 21:10:37 +01:00
parent 7c816d2511
commit 52a8195ad1
13 changed files with 265 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
interface Props {
src: string;
isDark?: boolean;
}
export function BrandLogo({ src, isDark }: Props) {
if (isDark) {
return (
<div className="w-9 h-9 p-1 rounded-full bg-white">
<img className="w-full h-full object-contain" src={src} />
</div>
);
}
return <img className="w-9 h-9 object-contain" src={src} />;
}