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