mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-19 13:58:56 +00:00
- upgrade all dependencies - upgrade to Tailwind CSS v4 - remove ugly default background - remove unnecessary default content - clean up files and remove those that are no longer needed
16 lines
407 B
TypeScript
16 lines
407 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center h-screen">
|
|
<h1 className="text-3xl font-bold pb-4">Hello World</h1>
|
|
<a
|
|
href="https://coolify.io"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="bg-blue-500 text-white p-2 rounded-md inline-block"
|
|
>
|
|
Click me
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|