This commit is contained in:
2025-03-20 17:56:21 +08:00
parent 8d3c805985
commit 9ad083b014
19 changed files with 535 additions and 112 deletions

12
components/Logo/index.tsx Normal file
View File

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