"use client";
import SectionHeader from "./SectionHeader";
import RuleCard from "./RuleCard";
import Button from "./Button";
import Image from "next/image";
const RuleStack = ({ children, className = "" }) => {
const handleTemplateClick = (templateName) => {
console.log(`Template selected: ${templateName}`);
// This would typically navigate to template details or open a modal
// For now, we'll just log the selection
};
return (