@@ -13,7 +13,7 @@ import { Footer } from '@ui/Footer';
13
13
interface Props { }
14
14
15
15
const Sponsorships : React . FC < Props > = ( ) => {
16
- const sponsorshipContent = `
16
+ const sponsorshipContentCol1 = `
17
17
# Integrations
18
18
19
19
## Intros
@@ -37,7 +37,9 @@ these, see Dedicated/Videos.
37
37
| Price (GBP) | Price (USD) |
38
38
| ----------- | ----------- |
39
39
| 150 | 190 |
40
+ ` ;
40
41
42
+ const sponsorshipContentCol2 = `
41
43
# Dedicated
42
44
43
45
## Videos
@@ -75,18 +77,26 @@ start with #ad.
75
77
< div className = "flex flex-col min-h-screen" >
76
78
< Navbar />
77
79
< div className = "flex justify-center" >
78
- < h1 className = "text-brand-gradient font-brand text-4xl text-center mt-10 mb-5 uppercase " >
80
+ < h1 className = "mt-10 mb-5 text-4xl text-center uppercase text-brand-gradient font-brand " >
79
81
Sponsorships
80
82
</ h1 >
81
83
</ div >
82
84
< div className = "grow" >
83
- < div className = "font-sans text-white text-md mt-4 mx-6 sm:mx-10 md:w-text md:mx-auto" >
84
- < ReactMarkdown
85
- children = { sponsorshipContent }
86
- className = "text-white font-sans unreset markdown grow"
87
- remarkPlugins = { [ remarkGfm , remarkSlug ] }
88
- rehypePlugins = { [ rehypeRaw ] }
89
- />
85
+ < div className = "flex justify-center mx-6 mt-4 font-sans text-white text-md sm:mx-10" >
86
+ < div className = "flex flex-col gap-8 md:flex-row" >
87
+ < ReactMarkdown
88
+ children = { sponsorshipContentCol1 }
89
+ className = "font-sans text-white unreset markdown grow max-w-text shrink basis-0"
90
+ remarkPlugins = { [ remarkGfm , remarkSlug ] }
91
+ rehypePlugins = { [ rehypeRaw ] }
92
+ />
93
+ < ReactMarkdown
94
+ children = { sponsorshipContentCol2 }
95
+ className = "font-sans text-white unreset markdown grow max-w-text shrink basis-0"
96
+ remarkPlugins = { [ remarkGfm , remarkSlug ] }
97
+ rehypePlugins = { [ rehypeRaw ] }
98
+ />
99
+ </ div >
90
100
</ div >
91
101
</ div >
92
102
< Footer />
0 commit comments