9 lines
221 B
TypeScript
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>
|
|
);
|
|
}
|
|
|