--- const props = Astro.props import Carousel from './Carousel.astro' // import 'bootstrap/dist/css/bootstrap.css' // import faqJson from '../../public/jsonData/faq.json' // import homeJson from '../../public/jsonData/home.json' // interface Coreteam{ // name : string; // position : string[]; // institute : string; // } // interface Significance{ // intro : string; // point: string[]; // end: string; // } // interface PartnerAndOrganisations{ // name: string; // description: string; // } // interface Faq{ // question: string; // answer: string; // } // interface Home{ // significance: Significance[]; // purpose: string[]; // partners: PartnerAndOrganisations[]; // coreteam: Coreteam[]; // } // const homeData : Home = homeJson; // const faqData : Faq[] = faqJson; //importing content from markdown files const coreTeamContent = await Astro.glob("../content/homePage/coreTeam/*.md"); const partnerContent = await Astro.glob("../content/homePage/partner/*.md"); const purposeContent = await Astro.glob("../content/homePage/purpose/*.md"); const significanceContent = await Astro.glob("../content/homePage/significance/*.md"); const faqContent = await Astro.glob("../content/faq/*.md"); ---

Introducing the Hackathon: Unlocking Innovation for a Better World

Welcome to the Open Source Hardware IoT GIS Hackathon!

Welcome to the National Level Open Hardware-IoT Geospatial Hackathon, a stage where innovation knows no boundaries. This premier event brings together visionaries, tech enthusiasts, and problem solvers from across the nation to harness the power of open hardware, the Internet of Things (IoT), and geospatial technology. Get ready to explore uncharted possibilities, collaborate on real-world challenges, and make a significant impact on our world.

Significance:

{ significanceContent.map((point) => { return (

{point.frontmatter.end}

) }) }

Purpose

{ purposeContent.map((point) => { return (

{point.frontmatter.desc}

) }) }

Registration

Please click on the following button to register yourself for the Hackathon

Partner and Organisers

{ partnerContent.map((partner) => { return (

{partner.frontmatter.name} {partner.frontmatter.description}

) }) }

Frequently Asked Questions (FAQ)

{ faqContent.map((faq,index) => { return (

{index + 1}. {faq.frontmatter.question}

Answer: {faq.frontmatter.answer}

) }) }

Core Team and Contact Us

{ coreTeamContent.map((member) => { return (

{member.frontmatter.name}

{member.frontmatter.position.map((pos:string) => { return (

{pos}

) })}

{member.frontmatter.institute}

) }) }

Please write to us in case of any queries regarding the Hackathon at:

Email : rajesh@cse.iitb.ac.in / mohamedkasim@iitb.ac.in