@@ -3,7 +3,7 @@ import Image from 'next/image'
33import Link from 'next/link'
44import { notFound } from 'next/navigation'
55import { getBaseUrl } from '@/lib/core/utils/urls'
6- import { AuthModal } from '@/app/(landing)/components/auth-modal/auth-modal '
6+ import { IntegrationCtaButton } from '@/app/(landing)/integrations/[slug]/ components/integration-cta-button '
77import { IntegrationFAQ } from '@/app/(landing)/integrations/[slug]/components/integration-faq'
88import { TemplateCardButton } from '@/app/(landing)/integrations/[slug]/components/template-card-button'
99import { IntegrationIcon } from '@/app/(landing)/integrations/components/integration-icon'
@@ -367,14 +367,12 @@ export default async function IntegrationPage({ params }: { params: Promise<{ sl
367367
368368 { /* CTAs */ }
369369 < div className = 'flex flex-wrap gap-2' >
370- < AuthModal defaultView = 'signup' source = 'integrations' >
371- < button
372- type = 'button'
373- className = 'inline-flex h-[32px] items-center gap-2 rounded-[5px] border border-white bg-white px-2.5 font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
374- >
375- Start building free
376- </ button >
377- </ AuthModal >
370+ < IntegrationCtaButton
371+ label = 'Start building free'
372+ className = 'inline-flex h-[32px] items-center gap-2 rounded-[5px] border border-white bg-white px-2.5 font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
373+ >
374+ Start building free
375+ </ IntegrationCtaButton >
378376 < a
379377 href = { docsUrl }
380378 target = '_blank'
@@ -781,14 +779,12 @@ export default async function IntegrationPage({ params }: { params: Promise<{ sl
781779 Build your first AI agent with { name } in minutes. Connect to every tool your team uses.
782780 Free to start — no credit card required.
783781 </ p >
784- < AuthModal defaultView = 'signup' source = 'integrations' >
785- < button
786- type = 'button'
787- className = 'inline-flex h-[32px] items-center gap-2 rounded-[5px] border border-white bg-white px-2.5 font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
788- >
789- Build for free
790- </ button >
791- </ AuthModal >
782+ < IntegrationCtaButton
783+ label = 'Build for free'
784+ className = 'inline-flex h-[32px] items-center gap-2 rounded-[5px] border border-white bg-white px-2.5 font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
785+ >
786+ Build for free
787+ </ IntegrationCtaButton >
792788 </ section >
793789 </ div >
794790
0 commit comments