Rule Stack default breakpoint added

This commit is contained in:
adilallo
2025-08-23 17:46:09 -06:00
parent cf703c9322
commit 0bbf30e85f
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -2,6 +2,7 @@
import SectionHeader from "./SectionHeader";
import RuleCard from "./RuleCard";
import Button from "./Button";
import Image from "next/image";
const RuleStack = ({ children, className = "" }) => {
@@ -68,6 +69,13 @@ const RuleStack = ({ children, className = "" }) => {
backgroundColor="bg-[var(--color-surface-default-brand-teal)]"
/>
</div>
{/* See all templates button */}
<div className="flex justify-center">
<Button variant="outlined" size="large">
See all templates
</Button>
</div>
</div>
);
};