Update components/Logo.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:55:23 +00:00
parent ae441b523e
commit 0140de7abb
1 changed files with 22 additions and 0 deletions

22
components/Logo.tsx Normal file
View File

@ -0,0 +1,22 @@
"use client";
import Link from "next/link";
import React from "react";
import Image from "next/image";
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"
>
<Image
src="https://lrggyvioreorxttbasgi.supabase.co/storage/v1/object/public/app-assets/1978/images/1768589860589-IMG-20260106-WA0030.jpg"
alt="Predator AI Solutions Logo"
width={32}
height={32}
className="rounded-full object-cover"
/>
<span className="font-medium text-black">Predator AI Solutions</span>
</Link>
);
};