From eadfe561b88730b923118d96115930651aab607d Mon Sep 17 00:00:00 2001 From: adilallo <39313955+adilallo@users.noreply.github.com> Date: Mon, 29 Sep 2025 13:44:05 -0600 Subject: [PATCH] Learn page content thumbnails at default breakpoint --- app/components/ContentThumbnailTemplate.js | 4 +-- app/learn/page.js | 40 +++++----------------- 2 files changed, 11 insertions(+), 33 deletions(-) diff --git a/app/components/ContentThumbnailTemplate.js b/app/components/ContentThumbnailTemplate.js index fbed8c1..3f7aa9f 100644 --- a/app/components/ContentThumbnailTemplate.js +++ b/app/components/ContentThumbnailTemplate.js @@ -76,14 +76,14 @@ const ContentThumbnailTemplate = ({ href={`/blog/${post.slug}`} className={`block transition-transform duration-200 hover:scale-[1.02] ${className}`} > -
+
{/* Background SVG - sized to fit the 320x225.5 container exactly */}
{/* eslint-disable-next-line @next/next/no-img-element */} {`Background {/* Gradient overlay */}
diff --git a/app/learn/page.js b/app/learn/page.js index 6bbb71c..800a198 100644 --- a/app/learn/page.js +++ b/app/learn/page.js @@ -22,37 +22,15 @@ export default function LearnPage() { />
-
-
- {/* More Articles */} -
-

- More Articles -

-
- {allPosts.slice(0, 3).map((post, index) => ( - - ))} -
-
- - {/* Coming Soon */} -
-

- More Content Coming Soon -

-

- We're working on adding more educational content to help you - build better communities. Check back soon for new articles and - resources. -

-
-
+
+ {allPosts.slice(0, 3).map((post, index) => ( + + ))}
);