This commit is contained in:
2025-03-21 22:40:00 +08:00
parent 7a4578c16d
commit 6e921e82fb
12 changed files with 146 additions and 19 deletions

15
widgets/Logo/index.tsx Normal file
View File

@@ -0,0 +1,15 @@
"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>
);
}