Update components/Logo.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:40:53 +00:00
parent 1e5876dfa3
commit 101eab501f
1 changed files with 16 additions and 0 deletions

16
components/Logo.tsx Normal file
View File

@ -0,0 +1,16 @@
"use client";
import Link from "next/link";
import React from "react";
export const Logo = () => {
return (
<Link
href="/"
className="font-normal flex space-x-2 items-center text-sm mr-4 text-black px-2 py-1 relative z-20"
>
{/* Replace with actual logo or app name */}
<div className="h-5 w-6 bg-black dark:bg-white rounded-br-lg rounded-tr-sm rounded-tl-lg rounded-bl-sm" />
<span className="font-medium text-black dark:text-white">[App Name]</span>
</Link>
);
};