Files
nexus-hub/widgets/Logo/index.tsx
2025-03-21 22:40:00 +08:00

16 lines
378 B
TypeScript

"use client";
import "@/app/globals.css";
export const id = "logo";
export const name = "Logo";
export const version = "1.0.0";
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>
);
}