+ {active && (
+
+ )}
+
+ );
+};
diff --git a/apps/nextjs/src/app/(home)/guides/action-guides/_components/GuideCard.tsx b/apps/nextjs/src/app/(home)/guides/action-guides/_components/GuideCard.tsx
index 3c1b535..99426c9 100644
--- a/apps/nextjs/src/app/(home)/guides/action-guides/_components/GuideCard.tsx
+++ b/apps/nextjs/src/app/(home)/guides/action-guides/_components/GuideCard.tsx
@@ -25,17 +25,17 @@ export default function Guides() {
const actionGuides = [
{
id: 1,
- title: "Test Action Guide 1",
+ title: "How to Start a Fundraiser",
description:
- "Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.",
+ "Fundraising is a great way to raise money for your cause. Here are some tips to get you started.",
tags: ["Fundraising"],
embedId: "Opening-Guide-Copy-7acb2eb37957405694b19afa43ae7b9c",
},
{
id: 2,
- title: "Test Action Guide 2",
+ title: "How to Plan an Event",
description:
- "Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat.",
+ "Planning an event can be a lot of work, but it can also be a lot of fun. Here are some tips to help you get started.",
tags: ["Impact Outreach"],
embedId: "Opening-Guide-Copy-7acb2eb37957405694b19afa43ae7b9c",
},
@@ -93,7 +93,7 @@ export default function Guides() {
{filteredGuides.map((guide) => (
-
+ {guide.title}
diff --git a/apps/nextjs/src/app/(home)/guides/layout.tsx b/apps/nextjs/src/app/(home)/guides/layout.tsx
index 047a623..440cb81 100644
--- a/apps/nextjs/src/app/(home)/guides/layout.tsx
+++ b/apps/nextjs/src/app/(home)/guides/layout.tsx
@@ -5,7 +5,9 @@ import { GuidesTabs } from "./_components/tabs";
export default function Layout({ children }: { children: React.ReactNode }) {
return (