SurfSense/surfsense_web/components/Logo.tsx

20 lines
355 B
TypeScript
Raw Normal View History

2025-04-07 23:47:06 -07:00
"use client";
2025-07-27 10:41:15 -07:00
2025-04-07 23:47:06 -07:00
import Image from "next/image";
2025-07-27 10:41:15 -07:00
import Link from "next/link";
2025-04-07 23:47:06 -07:00
import { cn } from "@/lib/utils";
export const Logo = ({ className }: { className?: string }) => {
2025-07-27 10:05:37 -07:00
return (
<Link href="/">
2026-01-09 15:00:15 +02:00
<Image
src="/icon-128.svg"
className={cn("dark:invert", className)}
alt="logo"
width={128}
height={128}
/>
2025-07-27 10:05:37 -07:00
</Link>
);
2025-04-07 23:47:06 -07:00
};