SurfSense/surfsense_web/components/Logo.tsx
DESKTOP-RTLN3BA\$punk 2e8d3fd721 feat: updated logo
2026-01-08 23:03:43 -08:00

13 lines
332 B
TypeScript

"use client";
import Image from "next/image";
import Link from "next/link";
import { cn } from "@/lib/utils";
export const Logo = ({ className }: { className?: string }) => {
return (
<Link href="/">
<Image src="/icon-128.svg" className={cn("dark:invert", className)} alt="logo" width={128} height={128} />
</Link>
);
};