File tree Expand file tree Collapse file tree 2 files changed +10
-22
lines changed Expand file tree Collapse file tree 2 files changed +10
-22
lines changed Original file line number Diff line number Diff line change @@ -48,31 +48,16 @@ export default function Profile({
48
48
</ span > { ' ' }
49
49
and join CodingCat.dev
50
50
</ h1 >
51
- < h2 className = "mt-4 font-sans text-lg lg:text-lg text-basics-600" >
52
- Get access to all of the exclusive content and up your coding
53
- skills.
54
- </ h2 >
55
51
</ div >
56
52
{ products && < MembershipCards products = { products } /> }
57
53
</ section >
58
54
59
- { /* Feels Misleading, removing for now */ }
60
- { /* <section>
61
- <div className="w-full py-4 text-center bg-primary-900 dark:bg-primary-900 text-basics-50 dark:text-basics-50 lg:px-4">
62
- <div
63
- className="flex items-center p-2 leading-none lg:rounded-full lg:inline-flex"
64
- role="alert"
65
- >
66
- <span className="flex-auto mr-2 font-semibold text-left">
67
- Pro Features
68
- </span>
69
- </div>
70
- </div>
71
- <div className="w-full p-8 text-2xl font-bold tracking-wide text-center uppercase border-b text-primary-900 border-primary-900">
72
- Why Go Pro?
73
- </div>
55
+ < section className = "mt-2 md:mt-8" >
74
56
< div className = "flex justify-center m-3" >
75
57
< ul >
58
+ < div className = "w-full p-8 mb-2 text-2xl font-bold tracking-wide text-center uppercase border-b text-primary-900 border-primary-900" >
59
+ Why Go Pro?
60
+ </ div >
76
61
< li className = "flex items-center" >
77
62
< div className = "p-3 rounded-full fill-current bg-primary-100 text-primary-900" >
78
63
< svg
@@ -115,6 +100,9 @@ export default function Profile({
115
100
</ span >
116
101
</ div >
117
102
</ li >
103
+ < div className = "w-full p-8 mb-2 text-2xl font-bold tracking-wide text-center uppercase border-b text-primary-900 border-primary-900" >
104
+ Future Features
105
+ </ div >
118
106
< li className = "flex items-center mt-3" >
119
107
< div className = "p-3 rounded-full fill-current bg-primary-100 text-primary-900" >
120
108
< svg
@@ -176,7 +164,7 @@ export default function Profile({
176
164
</ li >
177
165
</ ul >
178
166
</ div >
179
- </section> */ }
167
+ </ section >
180
168
</ >
181
169
) }
182
170
</ >
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ export async function getStaticProps({
27
27
28
28
return {
29
29
props : {
30
- header : header || null ,
31
- footer : footer || null ,
30
+ header : header ?. [ 0 ] ? header [ 0 ] : null ,
31
+ footer : footer ?. [ 0 ] ? footer [ 0 ] : null ,
32
32
} ,
33
33
revalidate : 5 ,
34
34
} ;
You can’t perform that action at this time.
0 commit comments