feat: integrate ScriptSetupBlock component for improved site setup instructions and tracking script functionality across pages

This commit is contained in:
Usman Baig
2026-02-08 15:18:33 +01:00
parent 39e90f4f09
commit bd2aca7a76
7 changed files with 266 additions and 189 deletions

14
app/welcome/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Welcome | Pulse',
description: 'Set up your Pulse workspace and add your first site.',
}
export default function WelcomeLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}