23 lines
665 B
TypeScript
23 lines
665 B
TypeScript
"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>
|
|
);
|
|
};
|