"use client";
import SectionHeader from "./SectionHeader";
import RuleCard from "./RuleCard";
import Image from "next/image";
const RuleStack = ({ children, className = "" }) => {
return (
}
backgroundColor="bg-[var(--color-surface-default-brand-lime)]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-rust)]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-red)]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-teal)]"
/>
);
};
export default RuleStack;