import ContentThumbnailTemplate from "../components/ContentThumbnailTemplate"; // Mock blog post data for testing const mockPost1 = { slug: "test-post-1", frontmatter: { title: "Resolving Active Conflicts", description: "Practical steps for resolving conflicts while maintaining trust, cooperation, and shared goals", author: "Author name", date: "2025-04-15", }, }; const mockPost2 = { slug: "test-post-2", frontmatter: { title: "Operational Security for Mutual Aid", description: "Tactics to protect members, secure communication, and prevent Infiltration", author: "Author name", date: "2025-04-10", }, }; const mockPost3 = { slug: "test-post-3", frontmatter: { title: "Making decisions without hierarchy", description: "A brief guide to collaborative nonhierarchical decision making", author: "Author name", date: "2025-04-05", }, }; export default function TestThumbnailPage() { return (
post - Blog post object with frontmatter
className - Additional CSS classes
variant - "vertical" (default) or "horizontal"
(for development/testing)
{JSON.stringify(mockPost1, null, 2)}