All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
737 B
TypeScript
23 lines
737 B
TypeScript
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>
|
||
);
|
||
}
|