Update components/Logo.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:40:45 +00:00
parent 083d86753a
commit b0972b0682
1 changed files with 14 additions and 0 deletions

14
components/Logo.tsx Normal file
View File

@ -0,0 +1,14 @@
"use client";
import Link from "next/link";
import React from "react";
export const Logo = () => {
return (
<Link
href="/"
className="font-black flex space-x-2 items-center text-xl text-black relative z-20 uppercase tracking-tighter"
>
<span>@ALEXCREATES</span>
</Link>
);
};