Files
nexus-hub/components/Logo.tsx
2025-03-20 05:47:13 +00:00

9 lines
221 B
TypeScript

import "@/app/globals.css";
export default function Home() {
return (
<div className="w-full h-full text-5xl font-bold text-gray-900 flex items-center justify-center">
NEXUSHUB
</div>
);
}