Files
nextjs-todo-tutorial/src/app/page.tsx

15 lines
469 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}