@@ -30,9 +30,12 @@ const FAQS = [
30
30
If you have a group of 5 or more people, you can receive a 10% discount
31
31
on all passes. All pass types must be the same, and all registrations
32
32
must be processed under one group registration and must be paid with the
33
- same credit card. To create a group, select “Add Another Person” to your
34
- registration. When 5 or more people are added the 10% discount will be
35
- automatically applied.{ " " }
33
+ same credit card.
34
+ < br />
35
+ < br />
36
+ To create a group, select “Add Another Person” to your registration.
37
+ When 5 or more people are added the 10% discount will be automatically
38
+ applied.{ " " }
36
39
< a
37
40
className = "typography-link"
38
41
@@ -99,6 +102,8 @@ const FAQS = [
99
102
LFX dashboard
100
103
</ a > { " " }
101
104
by navigating to the "Past Events" section in the LF Events column.
105
+ < br />
106
+ < br />
102
107
Please Note: We verify attendance through the registration system, and
103
108
certificates will only be available for download after the event is
104
109
completed.
@@ -165,7 +170,7 @@ const FAQS = [
165
170
question : "Looking for more?" ,
166
171
answer : (
167
172
< >
168
- Checkout our{ " " }
173
+ Check out our{ " " }
169
174
< a className = "typography-link" href = "/conf/2025/resources" >
170
175
Resources
171
176
</ a > { " " }
@@ -210,20 +215,20 @@ export function FAQ({ className }: { className?: string }) {
210
215
</ p >
211
216
</ div >
212
217
213
- < div className = "space-y-4 md:space-y-6" >
218
+ < div className = "grow space-y-4 md:space-y-6" >
214
219
{ FAQS . map ( ( faq , index ) => (
215
220
< details
216
221
open = { index === 0 }
217
222
key = { index }
218
- className = "group/q border border-neu-400"
223
+ className = "group/q w-full border border-neu-400 @container "
219
224
>
220
225
< summary className = "flex cursor-pointer list-none items-center justify-between gap-2 border-neu-400 p-2 px-3 focus:outline-none group-open/q:border-b [&::-webkit-details-marker]:hidden" >
221
226
< span className = "select-none typography-body-lg" >
222
227
{ faq . question }
223
228
</ span >
224
229
< ArrowDown className = "size-10 text-sec-darker group-open/q:rotate-180" />
225
230
</ summary >
226
- < p className = "p-3 typography-body-md" > { faq . answer } </ p >
231
+ < div className = "p-3 typography-body-md" > { faq . answer } </ div >
227
232
</ details >
228
233
) ) }
229
234
</ div >
0 commit comments