diff --git a/public/heroImgV1.png b/public/heroImgV1.png new file mode 100644 index 0000000..e1952c5 Binary files /dev/null and b/public/heroImgV1.png differ diff --git a/src/components/Faq.astro b/src/components/Faq.astro new file mode 100644 index 0000000..7cca721 --- /dev/null +++ b/src/components/Faq.astro @@ -0,0 +1,110 @@ +--- +import SectionTitle from "./SectionTitle.astro"; +import { Fragment } from "astro/jsx-runtime"; + +const faqs = [ + { + question: "What are the themes of the hackathon?", + points: [ + "Healthcare & Assistive Devices", + "Energy & Sustainability", + "Smart Campus / Smart City", + ], + note: "Each participant or team may register under only one theme.", + }, + { + question: "What type of projects are expected?", + answer: + "Participants are expected to work on open-source hardware-based projects that are practical, innovative, and socially relevant. Projects should be designed with reproducibility and real-world applicability in mind." + }, + { + question: "Is the use of open-source tools mandatory?", + answer: + "Yes. All projects must use Open Source Hardware platforms and Free/Libre Open Source Software (FLOSS) tools wherever applicable. Proper attribution must be provided for any third-party open-source components used." + }, + { + question: "Is there any specific hardware that must be used for the hackathon?", + answer: + "No. There is no restriction on the choice of hardware. Participants are free to use any hardware platform of their choice, provided it aligns with the selected theme and follows open-source principles. All submissions must include complete documentation such as circuit schematics, Bill of Materials (if applicable), and working firmware/software code. All documentation and code must be released under the Creative Commons Attribution–ShareAlike 4.0 International (CC BY-SA 4.0) license." + }, + { + question: "Is there any registration fee?", + answer: + "No. Participation in the FOSSEE OSHW Hackathon 2026 is free of cost." + }, + { + question: "How do participants register?", + answer: + "Participants must register through the official registration form available on the FOSSEE website. All communication will be sent to the registered email address." + }, + { + question: "How will the projects be evaluated?", + answer: + "Projects will be evaluated by a panel appointed by the organizers based on relevance to the selected theme, technical correctness, innovation and societal impact, quality of documentation, and adherence to open-source principles. The decision of the evaluation panel will be final." + }, + { + question: "Will participants receive certificates?", + answer: + "Yes. Certificates of participation will be issued to participants who successfully register and submit a valid project as per the guidelines. Additional recognition may be provided for selected projects." + }, + { + question: "Will mentoring or guidance be provided?", + answer: + "Details regarding orientation sessions, mentoring, or guidance (if any) will be communicated to registered participants through official channels." + }, + { + question: "Who should be contacted for queries?", + answer: + "Participants are advised to refer to the official contact details provided on the FOSSEE website for any queries related to registration or participation. Email ID - contact-oshw@fossee.in" + } +]; +--- + + +
+
+ + +
+
    + {faqs.map((item, index) => ( +
  1. +

    + {item.question} +

    + + {item.answer && ( +

    {item.answer}

    + )} + + {item.points && ( +
      + {item.points.map((point, i) => ( +
    • {point}
    • + ))} +
    + )} + + {item.note && ( +

    {item.note}

    + )} +
  2. + ))} +
+
+
+
diff --git a/src/components/Hero.astro b/src/components/Hero.astro index fb85b76..90af030 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -116,7 +116,7 @@