import React from 'react'; import Link from 'next/link'; import SubscribeForm from './SubscribeForm'; // Import the reusable SubscribeForm interface SidebarProps { recentPosts: Array<{ id: string; title: string; date: string; }>; tags?: Array<{ tag: string; count: number; }>; } const Sidebar: React.FC = ({ recentPosts, tags = [] }) => { return ( ); }; export default Sidebar;