import { Link } from "@builder.io/qwik-city" import { component$ } from "@builder.io/qwik" import { MotionComponent, TitleSection, transition } from "@nestri/ui/react" const blogs = [ { title: "Navigating VMs and GPU Passthrough: Building a Better Foundation for Nestri", createdAt: "2024-10-26T23:28:02.584Z", description: "Join us as we navigate the challenges of building Nestri", href: "gpu-passthru" } ] export default component$(() => { return (
{blogs.map((blog) => (

{blog.title}

{blog.description}

{new Date(blog.createdAt).toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' })}

))}
) })