--- import { getCollection } from "astro:content"; import BlogCard from "./BlogCard.astro"; import { ArrowRight } from "@lucide/astro"; const blogEntries = await getCollection("blog"); // Sort by publish date, most recent first const sortedPosts = blogEntries.sort( (a, b) => b.data.publishDate.getTime() - a.data.publishDate.getTime(), ); // Get only the latest 3 posts const latestPosts = sortedPosts.slice(0, 3); ---

Latest Blog Posts

Thoughts, insights, and tutorials on cybersecurity, OSINT, and technology.

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