Files
coolify-examples/nextjs/spa/app/page.tsx
Andras Bacsai 0de85455a6 Update page.tsx
2025-09-13 10:14:33 +02:00

18 lines
512 B
TypeScript

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>
);
}