Merge version_2_1777377803833 into main #1

Merged
bender merged 1 commits from version_2_1777377803833 into main 2026-04-28 12:04:03 +00:00

View File

@@ -57,9 +57,10 @@ const AboutFeaturesSplit = ({
<div className="flex flex-col justify-center gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5 w-full md:w-4/10 2xl:w-3/10 card rounded">
{items.map((item, index) => {
const ItemIcon = resolveIcon(item.icon);
const isEthical = item.title.includes("Ethical Sourcing");
return (
<div key={item.title}>
<div className="flex flex-col gap-2">
<div className={`flex flex-col gap-2 ${isEthical ? "bg-purple-600 p-4 rounded-lg" : ""}`}>
<div className="flex items-center justify-center shrink-0 mb-1 size-10 primary-button rounded">
<ItemIcon className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
</div>
@@ -83,4 +84,4 @@ const AboutFeaturesSplit = ({
);
};
export default AboutFeaturesSplit;
export default AboutFeaturesSplit;