Update components/Logo.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:18:59 +00:00
parent e0bf9b3b5b
commit 921a3c2bcc
1 changed files with 17 additions and 0 deletions

17
components/Logo.tsx Normal file
View File

@ -0,0 +1,17 @@
"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"
>
<div className="h-6 w-6 bg-pink-500 rounded-lg flex items-center justify-center">
<span className="text-white font-bold text-xs">H</span>
</div>
<span className="font-medium text-black">HerCraft</span>
</Link>
);
};