13 lines
525 B
TypeScript
13 lines
525 B
TypeScript
export default function AppLogo() {
|
|
return (
|
|
<>
|
|
{/* <div className="bg-sidebar-primary text-sidebar-primary-foreground flex aspect-square size-8 items-center justify-center rounded-md">
|
|
<AppLogoIcon className="size-5 fill-current text-white dark:text-black" />
|
|
</div> */}
|
|
<div className="ml-1 grid flex-1 text-left text-lg">
|
|
<span className="mb-0.5 truncate leading-none font-semibold">Meme AI Gen</span>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|