--- // import scheduleJson from '../../public/jsonData/schedule.json'; // interface ScheduleItem{ // heading : string; // events : string[]; // } // const scheduleData : ScheduleItem[] = scheduleJson; var scheduleContent = await Astro.glob('../content/scheduleEvent/*.md'); ---

National Level Open Hardware-IoT Geospatial Hackathon


{ scheduleContent.map((item)=>{ const Content = item.Content; return (

{item.frontmatter.heading}

)}) }