Skip to content

Commit 9930a41

Browse files
authored
refactor conf page (#1877)
* bunch of improvements * refactor past sponsor creation * prettier
1 parent 224e45d commit 9930a41

File tree

9 files changed

+464
-486
lines changed

9 files changed

+464
-486
lines changed

next-env.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/// <reference types="next/navigation-types/compat/navigation" />
44

55
// NOTE: This file should not be edited
6-
// see https://nextjs.org/docs/basic-features/typescript for more information.
6+
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

src/app/conf/2025/faq.tsx

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
import { ArrowRight } from "lucide-react"
2+
3+
import styles from "./index.module.css"
4+
5+
const FAQS = [
6+
{
7+
question: "When will speakers and the agenda be announced?",
8+
answer:
9+
"Stay tuned to our social media channels and website for updates on speakers and the agenda.",
10+
},
11+
{
12+
question: "Can I sponsor the event?",
13+
answer:
14+
'Yes! We offer various sponsorship packages. See <a href="#sponsors">this</a> section for more information.',
15+
},
16+
{
17+
question: "Are there group discounts for teams?",
18+
answer:
19+
'If you have a group of 5 or more people, you can receive a 10% discount on all passes. All pass types must be the same, and all registrations must be processed under one group registration and must be paid with the same credit card. To create a group, select “Add Another Person” to your registration. When 5 or more people are added the 10% discount will be automatically applied. <a href="mailto:[email protected]">Contact us</a> for any questions.',
20+
},
21+
{
22+
question: "What is the refund and cancellation policy?",
23+
answer: `If you must cancel for any reason, please sign back into your registration, click the “Register/Modify” button and select “Unregister.” If you need further assistance, <a href="mailto:[email protected]">contact us</a>.<br/><br/>Refunds will only be issued for cancellations received two weeks prior to the event start date, including bulk ticket request refunds, and will appear as a credit on the card's statement 7-10 business days after cancellation. Individual refund requests for late cancellations due to sickness or emergency will be considered on a case by case basis - <a href="mailto:[email protected]">contact us</a>.<br/><br/>Refunds can only be issued on the card the original payment was made.`,
24+
},
25+
{
26+
question: "Can I transfer my registration?",
27+
answer:
28+
"If you are unable to attend, you may substitute another attendee in lieu of cancellation. To substitute an attendee, sign back into your registration, click the “Register/Modify”, and select “Transfer Registration” on your confirmation page.",
29+
},
30+
{
31+
question: "Can I get certificate of attendance?",
32+
answer:
33+
'To request a Certificate of Attendance, please submit a request <a target="blank" href="https://docs.google.com/forms/d/1RpI8h6AGK2rCl3aIlyEY0D6fU3tsZ5yr1Ba6c3h6p9Y/viewform?edit_requested=true">here</a>. Please Note: We verify attendance through the registration system, and Certificate of Attendance letters are sent out after the event is completed.',
34+
},
35+
{
36+
question: "Cannot find the answer to your question?",
37+
answer:
38+
'You are welcome to email us <a href="mailto:[email protected]">[email protected]</a>.',
39+
},
40+
]
41+
42+
export function FAQ() {
43+
return (
44+
<div id="faq" className={styles.faq}>
45+
<div className="max-w-7xl mx-auto grid md:grid-cols-2 gap-12">
46+
<div>
47+
<h2 className="select-none text-4xl md:text-5xl font-bold mb-4">
48+
Frequently
49+
<br />
50+
Asked Questions
51+
</h2>
52+
<p className="text-sm select-none">
53+
PLEASE CONTACT{" "}
54+
<a
55+
href="mailto:[email protected]"
56+
className="text-primary hover:underline uppercase select-text"
57+
>
58+
59+
</a>
60+
</p>
61+
</div>
62+
63+
<div>
64+
{FAQS.map((faq, index) => (
65+
<details
66+
key={index}
67+
className="group border-b border-white/10 border-dashed"
68+
>
69+
<summary className="py-6 flex items-center justify-start gap-2 text-left cursor-pointer list-none focus:outline-none">
70+
<ArrowRight className="shrink-0 size-5 transition-transform duration-200 group-hover:translate-x-1 group-open:rotate-90" />
71+
<span className="text-lg select-none">{faq.question}</span>
72+
</summary>
73+
<p
74+
className="pb-6 ml-7 -mt-4 text-gray-300 whitespace-pre-wrap [&>a]:underline"
75+
dangerouslySetInnerHTML={{ __html: faq.answer }}
76+
/>
77+
</details>
78+
))}
79+
</div>
80+
</div>
81+
</div>
82+
)
83+
}

0 commit comments

Comments
 (0)