@@ -30,9 +30,12 @@ const FAQS = [
3030 If you have a group of 5 or more people, you can receive a 10% discount
3131 on all passes. All pass types must be the same, and all registrations
3232 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.{ " " }
3639 < a
3740 className = "typography-link"
3841@@ -99,6 +102,8 @@ const FAQS = [
99102 LFX dashboard
100103 </ a > { " " }
101104 by navigating to the "Past Events" section in the LF Events column.
105+ < br />
106+ < br />
102107 Please Note: We verify attendance through the registration system, and
103108 certificates will only be available for download after the event is
104109 completed.
@@ -165,7 +170,7 @@ const FAQS = [
165170 question : "Looking for more?" ,
166171 answer : (
167172 < >
168- Checkout our{ " " }
173+ Check out our{ " " }
169174 < a className = "typography-link" href = "/conf/2025/resources" >
170175 Resources
171176 </ a > { " " }
@@ -210,20 +215,20 @@ export function FAQ({ className }: { className?: string }) {
210215 </ p >
211216 </ div >
212217
213- < div className = "space-y-4 md:space-y-6" >
218+ < div className = "grow space-y-4 md:space-y-6" >
214219 { FAQS . map ( ( faq , index ) => (
215220 < details
216221 open = { index === 0 }
217222 key = { index }
218- className = "group/q border border-neu-400"
223+ className = "group/q w-full border border-neu-400 @container "
219224 >
220225 < 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" >
221226 < span className = "select-none typography-body-lg" >
222227 { faq . question }
223228 </ span >
224229 < ArrowDown className = "size-10 text-sec-darker group-open/q:rotate-180" />
225230 </ summary >
226- < p className = "p-3 typography-body-md" > { faq . answer } </ p >
231+ < div className = "p-3 typography-body-md" > { faq . answer } </ div >
227232 </ details >
228233 ) ) }
229234 </ div >
0 commit comments