mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 18:49:09 +00:00
22 lines
410 B
TypeScript
22 lines
410 B
TypeScript
"use client";
|
|
import Link from "next/link";
|
|
import React from "react";
|
|
import Image from "next/image";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export const Logo = ({ className }: { className?: string }) => {
|
|
return (
|
|
<Link
|
|
href="/"
|
|
>
|
|
<Image
|
|
src="/icon-128.png"
|
|
className={cn(className)}
|
|
alt="logo"
|
|
width={128}
|
|
height={128}
|
|
/>
|
|
</Link>
|
|
);
|
|
};
|
|
|