---
import type { BlogPost } from '@/lib/posts';
import SiteInfoCard from '@/components/SiteInfoCard.astro';
import { siteConfig } from '../../site.config.mjs';
interface Props {
posts: BlogPost[];
tags: string[];
categories: string[];
}
const { posts, tags, categories } = Astro.props;
const avatar = siteConfig.author.avatar;
const recentPosts = posts.slice(0, 5);
---