13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
"use client";
|
|
import "@/app/globals.css";
|
|
|
|
export default function Logo() {
|
|
return (
|
|
<div className="flex h-full w-full items-center justify-center bg-gray-300 text-5xl font-bold text-gray-900">
|
|
<span className="whitespace-nowrap md:whitespace-normal">
|
|
NEXUSHUB
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|