Files
stats/apps/web/src/components/Logo.tsx
Carl-Gerhard Lindesvärd 308ae98472 migrate to app dir and ssr
2024-01-20 22:54:38 +01:00

9 lines
224 B
TypeScript

export function Logo() {
return (
<div className="text-xl flex gap-2 items-center">
<img src="/logo.svg" className="w-8 rounded-lg" />
<span className="relative -top-0.5">openpanel</span>
</div>
);
}