Files
nextjs-ts/app/page.tsx
2026-04-11 14:03:15 -04:00

11 lines
264 B
TypeScript

const Home: React.FC = () => {
return (
<div className="flex items-center justify-center w-full h-screen">
<h1 className="text-6xl font-bold font-heading text-black text-center">
Start prompting
</h1>
</div>
)
}
export default Home