forked from semi-23e/nextjs-todo-tutorial
15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
export default function Home() {
|
||
return (
|
||
<main className="min-h-screen p-8 bg-gray-50 dark:bg-gray-900">
|
||
<div className="max-w-4xl mx-auto">
|
||
<h1 className="text-4xl font-bold text-center text-gray-800 dark:text-gray-100 mb-8">
|
||
私のTODOアプリ
|
||
</h1>
|
||
<p className="text-center text-gray-600 dark:text-gray-400">
|
||
これからTODOアプリを作っていきます!
|
||
</p>
|
||
</div>
|
||
</main>
|
||
);
|
||
}
|