16 lines
507 B
TypeScript
16 lines
507 B
TypeScript
"use client";
|
|
import Link from "next/link";
|
|
import React from "react";
|
|
|
|
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"
|
|
>
|
|
<div className="h-5 w-6 bg-blue-600 rounded-br-lg rounded-tr-sm rounded-tl-lg rounded-bl-sm" />
|
|
<span className="font-bold text-black text-lg tracking-tight">APEX YOUNG <span className="text-blue-600">DETAILERS</span></span>
|
|
</Link>
|
|
);
|
|
};
|