Frontend/src/app/page.tsx

9 lines
255 B
TypeScript
Raw Normal View History

2024-04-14 16:45:04 +00:00
export default function Home() {
return (
2024-04-14 17:46:37 +00:00
<div>
<h1 className="font-bold text-xl">Minecraft Utilities - Hello!</h1>
<p>We provide a convenient wrapper for the Minecraft APIs, simplifying their usage for developers.</p>
</div>
2024-04-14 16:45:04 +00:00
);
}