Files
gb-site/frontend/src/app/page.tsx
Ivan Liashkevich 2dadc5362d
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Add PostHog analytics with heatmap support
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 16:49:52 +02:00

23 lines
737 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { PostHogTestButton } from "./posthog-test-button";
export default function Home() {
return (
<div className="flex min-h-screen items-center justify-center">
<main className="flex flex-col items-center gap-8 text-center">
<h1 className="text-5xl font-bold tracking-tight">GoodBrick</h1>
<p className="text-xl text-muted-foreground">
Производитель фасадной плитки
</p>
<div className="flex gap-4 text-sm text-muted-foreground">
<span>Next.js</span>
<span>+</span>
<span>shadcn/ui</span>
<span>+</span>
<span>.NET 9</span>
</div>
<PostHogTestButton />
</main>
</div>
);
}