2 Commits

2 changed files with 3 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardSeven
title="Why Join Our Center"
title="a new one"
description="Discover the programs, support systems, and community initiatives that make our center a beacon of hope and pride."
tag="Key Programs"
features={[

View File

@@ -7,6 +7,7 @@ import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
import { User } from "lucide-react"; // Import the User icon from lucide-react
type TeamCardTwoGridVariant = Exclude<GridVariant, "timeline">;
@@ -211,6 +212,7 @@ const TeamCardTwo = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
<User className="h-6 w-6 text-foreground mr-2" /> {/* Inserted the User icon element */}
{members.map((member, index) => (
<TeamMemberCard
key={`${member.id}-${index}`}