add posthog analytics

This commit is contained in:
Aman Varshney
2025-05-28 20:41:03 +05:30
parent b8532f24f5
commit 591ecf8a09
6 changed files with 153 additions and 70 deletions

View File

@@ -27,9 +27,9 @@ export default function HomePage() {
const [selectedPM, setSelectedPM] = useState<"npm" | "pnpm" | "bun">("bun");
const commands = {
npm: "npx create-better-t-stack@latest my-app",
pnpm: "pnpm create better-t-stack@latest my-app",
bun: "bun create better-t-stack@latest my-app",
npm: "npx create-better-t-stack@latest",
pnpm: "pnpm create better-t-stack@latest",
bun: "bun create better-t-stack@latest",
};
useEffect(() => {