From 0140de7abb771fa5f1eaeef0d42721dae08ae514 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:55:23 +0000 Subject: [PATCH] Update components/Logo.tsx --- components/Logo.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 components/Logo.tsx diff --git a/components/Logo.tsx b/components/Logo.tsx new file mode 100644 index 0000000..567e44d --- /dev/null +++ b/components/Logo.tsx @@ -0,0 +1,22 @@ +"use client"; +import Link from "next/link"; +import React from "react"; +import Image from "next/image"; + +export const Logo = () => { + return ( + + Predator AI Solutions Logo + Predator AI Solutions + + ); +};