diff --git a/app/components/RuleCard.js b/app/components/RuleCard.js index aaa94f4..5da073e 100644 --- a/app/components/RuleCard.js +++ b/app/components/RuleCard.js @@ -9,7 +9,7 @@ const RuleCard = ({ }) => { return (
{/* Header Container */}
diff --git a/app/components/RuleStack.js b/app/components/RuleStack.js index 42d3ce9..2efc5b9 100644 --- a/app/components/RuleStack.js +++ b/app/components/RuleStack.js @@ -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)]" />
+ + {/* See all templates button */} +
+ +
); };