import React from "react" import Image from "next/image" import Link from "next/link" function BlogCard({ title, slug, subtitle, imageUrl }) { return ( <>
{title}

{title}

{subtitle}

) } export default BlogCard