Add dark theme support to placeholder index

This commit is contained in:
Alex Gleason 2025-05-30 22:48:59 +02:00
parent 0e8a141490
commit 81f90b9985
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -2,10 +2,14 @@
const Index = () => {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-100">
<div className="min-h-screen flex items-center justify-center bg-gray-100 dark:bg-gray-900">
<div className="text-center">
<h1 className="text-4xl font-bold mb-4">Welcome to Your Blank App</h1>
<p className="text-xl text-gray-600">Start building your amazing project here!</p>
<h1 className="text-4xl font-bold mb-4 text-gray-900 dark:text-gray-100">
Welcome to Your Blank App
</h1>
<p className="text-xl text-gray-600 dark:text-gray-400">
Start building your amazing project here!
</p>
</div>
</div>
);