base page
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 43s

This commit is contained in:
2024-09-03 22:00:14 +02:00
parent 620f0477fd
commit 8f0cdbaa21
3 changed files with 25 additions and 6 deletions

12
app/welcome/page.tsx Normal file
View File

@ -0,0 +1,12 @@
export default function Home() {
return (
<div className="shadow-xl rounded-lg w-full border px-6 py-12 bg-emerald-900 border-emerald-700 ">
<div className="flex flex-col">
<span className="text-4xl font-bold">📅 Track Every Day</span>
<span className="mt-4 text-center">
A web app for logging your habits, vices and activities.
</span>
</div>
</div>
);
}