11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import React from 'react';
|
|
|
|
const Home: React.FC = () => {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
<h1 className="text-6xl font-bold font-heading">Start Prompting</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home; |