--- import BlogProjectCard from "../components/misc/BlogProjectCard.astro"; import Divider from "../components/misc/Divider.astro"; import Layout from "../layouts/Layout.astro"; const projects = (await Astro.glob("./projects/**/*.{md,mdx}")).sort( (a,b) => new Date(b.frontmatter.date).valueOf()- new Date(a.frontmatter.date).valueOf() ).slice(0,5); ---

Hello World!

I'm glad you are here!

Feel free to stay as long as you like. There are cool projects to explore and more to come. Stay awesome and thanks for visiting!

Latest Projects

{ projects.map((post) => ( )) }