@@ -15,34 +15,34 @@ export function RedeemReferralLanding({
15
15
return (
16
16
< div className = "relative mt-10 max-w-lg" >
17
17
< Sheet >
18
- < MarketingH1 > { title } </ MarketingH1 >
18
+ < DisplayH1 > { title } </ DisplayH1 >
19
19
20
- < MarketingP >
20
+ < DisplayP >
21
21
Convex is the open-source reactive database for app developers.
22
- </ MarketingP >
22
+ </ DisplayP >
23
23
24
- < MarketingP >
24
+ < DisplayP >
25
25
Accept this referral to double your free account quota.
26
- </ MarketingP >
26
+ </ DisplayP >
27
27
28
28
< LogInButton code = { code } />
29
29
</ Sheet >
30
30
</ div >
31
31
) ;
32
32
}
33
33
34
- function MarketingH1 ( { children } : React . PropsWithChildren ) {
34
+ function DisplayH1 ( { children } : React . PropsWithChildren ) {
35
35
return (
36
36
< h1
37
37
// eslint-disable-next-line no-restricted-syntax
38
- className = "mb-6 font-marketing text-3xl font-black leading-[1.1] tracking-tight text-content-primary sm:text-5xl"
38
+ className = "mb-6 font-display text-3xl font-black leading-[1.1] tracking-tight text-content-primary sm:text-5xl"
39
39
>
40
40
{ children }
41
41
</ h1 >
42
42
) ;
43
43
}
44
44
45
- function MarketingP ( { children } : React . PropsWithChildren ) {
45
+ function DisplayP ( { children } : React . PropsWithChildren ) {
46
46
return (
47
47
< p
48
48
// eslint-disable-next-line no-restricted-syntax
@@ -61,7 +61,7 @@ function LogInButton({ code }: { code: string }) {
61
61
// to GitHub when following the link.
62
62
< a
63
63
className = { cn (
64
- "group z-10 inline-flex rounded-full bg-gradient-to-br from-[#8d2676_33%] via-[#ee342f] via-90% to-[#f3b01c] to-100% p-0.5 font-marketing shadow-[0_2px_14px_rgba(111,0,255,0.25)] transition-shadow my-2" ,
64
+ "group z-10 inline-flex rounded-full bg-gradient-to-br from-[#8d2676_33%] via-[#ee342f] via-90% to-[#f3b01c] to-100% p-0.5 font-display shadow-[0_2px_14px_rgba(111,0,255,0.25)] transition-shadow my-2" ,
65
65
! clicked && "hover:shadow-[rgba(111,0,255,0.5)]" ,
66
66
clicked && "opacity-80 cursor-progress" ,
67
67
) }
0 commit comments