Update components/Logo.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:41:39 +00:00
parent 5258609e36
commit 2602c5915d
1 changed files with 23 additions and 0 deletions

23
components/Logo.tsx Normal file
View File

@ -0,0 +1,23 @@
"use client";
import { cn } from "@/lib/utils";
import Link from "next/link";
import React from "react";
export const Logo = ({ className }: { className?: string }) => {
return (
<Link
href="/"
className={cn(
"font-normal flex space-x-2 items-center text-sm mr-4 px-2 py-1 relative z-20",
className || "text-black"
)}
>
{/* Replace with actual logo or app name */}
<div className={cn(
"h-5 w-6 rounded-br-lg rounded-tr-sm rounded-tl-lg rounded-bl-sm transition-colors duration-200",
className?.includes("text-white") ? "bg-white" : "bg-black"
)} />
<span className="font-medium">Miami Elite Coaching</span>
</Link>
);
};