f6a0673082
CI Pipeline / test (20) (pull_request) Failing after 1m17s
CI Pipeline / test (18) (pull_request) Failing after 1m28s
CI Pipeline / e2e (chromium) (pull_request) Failing after 1m33s
CI Pipeline / e2e (firefox) (pull_request) Failing after 1m27s
CI Pipeline / e2e (webkit) (pull_request) Failing after 1m34s
CI Pipeline / visual-regression (pull_request) Failing after 2m9s
CI Pipeline / storybook (pull_request) Failing after 1m5s
CI Pipeline / performance (pull_request) Failing after 1m42s
CI Pipeline / lint (pull_request) Failing after 49s
CI Pipeline / build (pull_request) Failing after 1m29s
101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import React, { memo, useMemo } from "react";
|
|
import ContentLockup from "./ContentLockup";
|
|
import MiniCard from "./MiniCard";
|
|
|
|
interface FeatureGridProps {
|
|
title?: string;
|
|
subtitle?: string;
|
|
className?: string;
|
|
}
|
|
|
|
const FeatureGrid = memo<FeatureGridProps>(
|
|
({ title, subtitle, className = "" }) => {
|
|
// Memoize the feature data to prevent unnecessary re-renders
|
|
const features = useMemo(
|
|
() => [
|
|
{
|
|
backgroundColor: "bg-[var(--color-surface-default-brand-royal)]",
|
|
labelLine1: "Decision-making",
|
|
labelLine2: "support",
|
|
panelContent: "/assets/Feature_Support.png",
|
|
ariaLabel: "Decision-making support tools",
|
|
href: "#decision-making",
|
|
},
|
|
{
|
|
backgroundColor: "bg-[#D1FFE2]",
|
|
labelLine1: "Values alignment",
|
|
labelLine2: "exercises",
|
|
panelContent: "/assets/Feature_Exercises.png",
|
|
ariaLabel: "Values alignment exercises",
|
|
href: "#values-alignment",
|
|
},
|
|
{
|
|
backgroundColor: "bg-[#F4CAFF]",
|
|
labelLine1: "Membership",
|
|
labelLine2: "guidance",
|
|
panelContent: "/assets/Feature_Guidance.png",
|
|
ariaLabel: "Membership guidance resources",
|
|
href: "#membership-guidance",
|
|
},
|
|
{
|
|
backgroundColor: "bg-[#CBDDFF]",
|
|
labelLine1: "Conflict resolution",
|
|
labelLine2: "tools",
|
|
panelContent: "/assets/Feature_Tools.png",
|
|
ariaLabel: "Conflict resolution tools",
|
|
href: "#conflict-resolution",
|
|
},
|
|
],
|
|
[]
|
|
);
|
|
return (
|
|
<section
|
|
className={`p-0 lg:p-[var(--spacing-scale-064)] ${className}`}
|
|
aria-labelledby="feature-grid-headline"
|
|
role="region"
|
|
tabIndex={-1}
|
|
>
|
|
<div className="py-[var(--spacing-scale-032)] px-[var(--spacing-scale-020)] md:pt-[var(--spacing-scale-076)] md:pb-[var(--spacing-scale-048)] lg:pb-[var(--spacing-scale-076)] md:px-[var(--spacing-scale-048)] bg-[#171717] rounded-[var(--radius-measures-radius-xlarge)] focus-within:ring-2 focus-within:ring-[var(--color-surface-default-brand-royal)] focus-within:ring-offset-2">
|
|
<div className="w-full mx-auto gap-[var(--spacing-scale-048)] lg:flex lg:items-start lg:gap-[var(--spacing-scale-048)] [container-type:inline-size]">
|
|
{/* Feature Content Lockup */}
|
|
<div className="lg:shrink lg:min-w-0">
|
|
<ContentLockup
|
|
title={title}
|
|
subtitle={subtitle}
|
|
variant="feature"
|
|
linkText="Learn more"
|
|
linkHref="#"
|
|
/>
|
|
</div>
|
|
|
|
{/* MiniCard Grid */}
|
|
<div
|
|
className="grid grid-cols-2 md:grid-cols-4 gap-[var(--spacing-scale-012)] mt-[var(--spacing-scale-048)] lg:mt-0 lg:flex-grow lg:shrink-0"
|
|
role="grid"
|
|
aria-label="Feature tools and services"
|
|
>
|
|
{features.map((feature, index) => (
|
|
<MiniCard
|
|
key={index}
|
|
backgroundColor={feature.backgroundColor}
|
|
labelLine1={feature.labelLine1}
|
|
labelLine2={feature.labelLine2}
|
|
panelContent={feature.panelContent}
|
|
ariaLabel={feature.ariaLabel}
|
|
href={feature.href}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
);
|
|
|
|
FeatureGrid.displayName = "FeatureGrid";
|
|
|
|
export default FeatureGrid;
|