diff --git a/app/components/ContentLockup.js b/app/components/ContentLockup.js index 3a21436..dfffe89 100644 --- a/app/components/ContentLockup.js +++ b/app/components/ContentLockup.js @@ -49,7 +49,8 @@ const ContentLockup = ({ "w-[20px] h-[20px] md:w-[24px] md:h-[24px] lg:w-[28px] lg:h-[28px]", }, learn: { - container: "flex flex-col gap-[var(--spacing-scale-012)] relative z-10", + container: + "flex flex-col gap-[var(--spacing-scale-012)] relative z-10 pt-[var(--spacing-scale-016)] pb-[var(--spacing-scale-016)] px-[var(--spacing-scale-020)]", textContainer: "flex flex-col gap-[var(--spacing-scale-012)]", titleGroup: "flex flex-col gap-[var(--spacing-scale-012)]", titleContainer: "flex gap-[var(--spacing-scale-008)] items-center", diff --git a/app/learn/page.js b/app/learn/page.js index e1b4f8d..6de9350 100644 --- a/app/learn/page.js +++ b/app/learn/page.js @@ -1,5 +1,6 @@ import ContentThumbnailTemplate from "../components/ContentThumbnailTemplate"; import ContentLockup from "../components/ContentLockup"; +import AskOrganizer from "../components/AskOrganizer"; import { getAllBlogPosts, getRecentBlogPosts } from "../../lib/content"; export default function LearnPage() { @@ -7,49 +8,39 @@ export default function LearnPage() { const allPosts = getAllBlogPosts(); const recentPosts = getRecentBlogPosts(3); + const contentLockupData = { + title: "Organizing is hard", + subtitle: + "Find answers to your questions and see how other groups have solved similar challenges.", + variant: "learn", + alignment: "left", + }; + + const askOrganizerData = { + title: "Still have questions?", + subtitle: "Get answers from an experienced organizer", + description: + "Our community of organizers is here to help you navigate the challenges of building and maintaining effective community organizations.", + buttonText: "Ask an organizer", + buttonHref: "/contact", + variant: "centered", + }; + return (
- We're working on adding more educational content to help you - build better communities. Check back soon for new articles and - resources. -
-