Update components/Logo.tsx
This commit is contained in:
parent
083d86753a
commit
b0972b0682
|
|
@ -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>
|
||||
);
|
||||
};
|
||||
Loading…
Reference in New Issue