15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
"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>
|
|
);
|
|
};
|