feat: implement contact form and Chatwoot widget

Add Resend API-based contact form and Chatwoot widget integration.

Co-authored-by: ASOwnerYT <[email protected]>
This commit is contained in:
v0
2026-03-20 00:45:35 +00:00
co-authored by ASOwnerYT
parent 39daf41b93
commit 21d4c5f579
4 changed files with 168 additions and 11 deletions
+2
View File
@@ -1,6 +1,7 @@
import type { Metadata } from 'next'
import { Space_Grotesk, Inter } from 'next/font/google'
import { Analytics } from '@vercel/analytics/next'
import { ChatwootWidget } from '@/components/chatwoot'
import './globals.css'
const spaceGrotesk = Space_Grotesk({
@@ -45,6 +46,7 @@ export default function RootLayout({
<body className={`${spaceGrotesk.variable} ${inter.variable} font-sans antialiased`}>
{children}
<Analytics />
<ChatwootWidget />
</body>
</html>
)