This commit is contained in:
Andras Bacsai
2025-09-17 10:05:43 +02:00
parent f49559e030
commit ae9f62a75b
17 changed files with 9380 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
export default function Home() {
const analyticsId = process.env.NEXT_PUBLIC_ANALYTICS_ID;
return (
<div className="flex flex-col items-center justify-center h-screen">
<h1 className="text-3xl font-bold pb-4">Hello World</h1>
<p>Analytics ID: {analyticsId}</p>
<a
href="https://coolify.io"
target="_blank"
rel="noopener noreferrer"
className="bg-blue-500 text-white p-2 rounded-md inline-block"
>
Click me now
</a>
</div>
);
}