23 lines
815 B
TypeScript
23 lines
815 B
TypeScript
export default function Home() {
|
|
return (
|
|
<>
|
|
<div className="shadow-xl rounded-lg w-full border px-6 py-12 bg-green-900 border-green-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>
|
|
<div className="mt-16 shadow-xl rounded-lg w-full border px-6 py-12 bg-amber-900 border-amber-700 ">
|
|
<div className="flex flex-col">
|
|
<span className="text-4xl font-bold">BAD HABIT</span>
|
|
<span className="mt-4 text-center">
|
|
A web app for logging your habits, vices and activities.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|