diff --git a/src/app/conf/2025/faq.tsx b/src/app/conf/2025/faq.tsx index ab167c90a5..95bdc0c072 100644 --- a/src/app/conf/2025/faq.tsx +++ b/src/app/conf/2025/faq.tsx @@ -16,11 +16,11 @@ const FAQS = [ { question: "Are there group discounts for teams?", answer: - '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. Contact us for any questions.', + '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. registration@linuxfoundation.org for any questions.', }, { question: "What is the refund and cancellation policy?", - 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, contact us.

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 - contact us.

Refunds can only be issued on the card the original payment was made.`, + 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, please contact registration@linuxfoundation.org.

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 - registration@linuxfoundation.org.

Refunds can only be issued on the card the original payment was made.`, }, { question: "Can I transfer my registration?", @@ -29,13 +29,30 @@ const FAQS = [ }, { question: "Can I get certificate of attendance?", + answer: `You can download your Certificate of Attendance directly from your LFX dashboard by navigating to the "Past Events" section in the LF Events column. Please Note: We verify attendance through the registration system, and certificates will only be available for download after the event is completed.`, + }, + { + question: "How do I request a visa letter?", + answer: `You must be registered for the event before requesting a visa letter. Please note: it can take up to an hour for our registration system and visa letter system to sync. Request a visa letter.`, + }, + { + question: "Where can I find health and safety information for the event?", answer: - 'To request a Certificate of Attendance, please submit a request here. Please Note: We verify attendance through the registration system, and Certificate of Attendance letters are sent out after the event is completed.', + 'Your well-being is our top priority. We continuously update our health and safety guidelines based on local regulations. Information about food allergies, medical resources, emergency contacts, and safety services can be found on this page.', + }, + { + question: "What accessibility and onsite resources are available?", + answer: + 'We are committed to providing a comfortable and accessible experience for all attendees. Onsite resources include a private nursing room, venue accessibility support, reserved seating, a quiet room, communication and pronoun stickers, all-gender restrooms, first aid assistance, and a process for handling harassment reports. For full details on these resources, please visit this page.', + }, + { + question: "Looking for more?", + answer: "Checkout our Resources page.", }, { question: "Cannot find the answer to your question?", answer: - 'You are welcome to email us graphqlconf@graphql.org.', + 'You are welcome to email us graphql_events@linuxfoundation.org.', }, ] @@ -50,13 +67,14 @@ export function FAQ() { Asked Questions

- PLEASE CONTACT{" "} + You can find much more information on our{" "} - graphqlconf@graphql.org - + Resources + {" "} + page.

diff --git a/src/app/conf/2025/layout.tsx b/src/app/conf/2025/layout.tsx index 9b84eb99da..3c0f0b93ab 100644 --- a/src/app/conf/2025/layout.tsx +++ b/src/app/conf/2025/layout.tsx @@ -4,6 +4,12 @@ import { Header } from "../_components/header" import { Footer } from "../_components/footer" import { GraphQLConf, HostedByGraphQLFoundation } from "@/icons" import NextLink from "next/link" +import { Rubik } from "next/font/google" + +const rubik = Rubik({ + weight: ["700", "600", "500", "400", "300"], + subsets: ["latin"], +}) export const metadata = { description: @@ -41,15 +47,22 @@ export default function Layout({ } links={[ - { children: "Sponsor", href: "#sponsors" }, - { children: "Speakers", href: "#speakers" }, - { children: "Register", href: "#register" }, + { children: "Sponsor", href: "/conf/2025/#sponsors" }, + { children: "Speakers", href: "/conf/2025/#speakers" }, + { children: "Register", href: "/conf/2025/#register" }, { children: "Recap", href: "/conf/2024" }, - { children: "FAQ", href: "#faq" }, + { children: "Resources", href: "/conf/2025/resources" }, + { children: "FAQ", href: "/conf/2025/#faq" }, ]} is2025 /> - {children} +
+ {children} +