"use client"; import { useTranslation } from "../../../contexts/MessagesContext"; import SectionHeader from "../SectionHeader"; import Button from "../../buttons/Button"; import { GovernanceTemplateGrid } from "../GovernanceTemplateGrid"; import { getGovernanceTemplatesForHome } from "../../../../lib/templates/governanceTemplateCatalog"; import type { RuleStackViewProps } from "./RuleStack.types"; const homeFeaturedTemplates = getGovernanceTemplatesForHome(); export function RuleStackView({ className, onTemplateClick, }: RuleStackViewProps) { const t = useTranslation("pages.home.ruleStack"); const buttonText = t("button.seeAllTemplates"); return (
); }