import React from 'react'; import Link from "next/link"; import type { BlogPost } from "@/lib/types"; export function RelatedPosts({ posts }: { posts: BlogPost[] }) { if (!posts?.length) return null; return (

Related Guides

); }