SurfSense/surfsense_web/components/Logo.tsx

14 lines
317 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="/">
<Image src="/icon-128.png" className={cn(className)} alt="logo" width={128} height={128} />
</Link>
);
2025-04-07 23:47:06 -07:00
};