mirror of
https://github.com/katanemo/plano.git
synced 2026-06-20 15:28:07 +02:00
18 lines
336 B
TypeScript
18 lines
336 B
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
|
|
export function Logo() {
|
|
return (
|
|
<div className="flex items-center">
|
|
{/* LogoMarkSquare SVG */}
|
|
<Image
|
|
src="/Logomark.svg"
|
|
alt="Plano Logo"
|
|
width={90}
|
|
height={20}
|
|
className="flex-shrink-0"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|