@@ -4,7 +4,7 @@ import Link from 'next/link'
4
4
import { usePostHog } from 'posthog-js/react'
5
5
import { useFold } from '~/lib/hooks/use-fold'
6
6
import { cn } from '~/lib/utils/cn'
7
- import { Button } from '~/ui/button '
7
+ import { CTA } from '~/ui/cta '
8
8
import { Footer } from '~/ui/footer'
9
9
import { Albertsons } from '~/ui/logos/albertsons'
10
10
import { Cal } from '~/ui/logos/cal'
@@ -28,7 +28,6 @@ const Section = ({ children, className }: { children: React.ReactNode; className
28
28
export default function Page ( ) {
29
29
const posthog = usePostHog ( )
30
30
const { isBelowFold } = useFold ( )
31
- const hook = "We don't have a sales team. Let's talk."
32
31
33
32
return (
34
33
< div className = "flex flex-col items-center" >
@@ -80,37 +79,8 @@ export default function Page() {
80
79
</ div >
81
80
< Testimonials />
82
81
< Partners />
83
- < div className = "flex flex-col gap-8" >
84
- < h2 className = "max-w-2xl text-7xl" > { hook } </ h2 >
85
- < div className = "flex items-center gap-4" >
86
- < Link
87
- href = "/blog/introducing-rubric-labs"
88
- onClick = { ( ) =>
89
- posthog . capture ( 'read_more.clicked' , {
90
- body : 'Read our founding story' ,
91
- hook,
92
- href : '/blog/introducing-rubric-labs'
93
- } )
94
- }
95
- >
96
- < Button variant = "ghost" > Read our founding story</ Button >
97
- </ Link >
98
- < Link
99
- href = "/contact"
100
- onClick = { ( ) =>
101
- posthog . capture ( 'contact_us.clicked' , {
102
- body : 'Get in touch' ,
103
- hook,
104
- href : '/contact'
105
- } )
106
- }
107
- >
108
- < Button > Get in touch</ Button >
109
- </ Link >
110
- </ div >
111
- </ div >
82
+ < CTA />
112
83
</ Section >
113
-
114
84
< Footer />
115
85
</ div >
116
86
)
0 commit comments