Related Articles lg breakpoint implemented

This commit is contained in:
adilallo
2025-09-11 14:27:18 -06:00
parent 8a31671bbc
commit 3820076435
4 changed files with 104 additions and 39 deletions
+11
View File
@@ -3,6 +3,7 @@ import Link from "next/link";
import { getBlogPostBySlug, getAllPosts } from "../../../lib/contentProcessor";
import ContentBanner from "../../components/ContentBanner";
import RelatedArticles from "../../components/RelatedArticles";
import AskOrganizer from "../../components/AskOrganizer";
import { getAssetPath, ASSETS } from "../../../lib/assetUtils";
/**
@@ -127,6 +128,16 @@ export default async function BlogPostPage({ params }) {
relatedPosts={relatedArticles}
currentPostSlug={post.slug}
/>
{/* Ask Organizer Section */}
<AskOrganizer
title="Have questions about this topic?"
subtitle="Get help from experienced organizers"
description="Our community organizers are here to help you implement these strategies in your own community. Reach out for personalized guidance and support."
buttonText="Ask an organizer"
buttonHref="/contact"
variant="centered"
/>
</div>
);
}