import Link from "next/link" import { YOUTUBE_ID_REGEX } from "../../lib/constants" export function Latest({ posts }) { return (

Latest Releases

Our latest articles and explorations.

{posts && posts.map(({ title, description, image, youtube, link }) => (
{image && {title}}
))}
) }