Implement about page

This commit is contained in:
adilallo
2026-05-13 23:08:36 -06:00
parent d2dfa099a2
commit b6b9b63608
69 changed files with 1834 additions and 28 deletions
+33
View File
@@ -0,0 +1,33 @@
import type { Meta, StoryObj } from "@storybook/react";
import Accordion from "../../app/components/layout/Accordion";
const meta: Meta<typeof Accordion> = {
title: "Components/Layout/Accordion",
component: Accordion,
parameters: {
layout: "padded",
backgrounds: { default: "dark" },
},
};
export default meta;
type Story = StoryObj<typeof Accordion>;
export const Default: Story = {
args: {
title: "What is CommunityRule, and who is it for?",
children: "CommunityRule helps groups write operating manuals.",
size: "l",
},
};
/** FAQ-style: small header below `lg`, medium at `lg` (Figma 22135-890258). */
export const SmallWithMediumAtLg: Story = {
args: {
title: "What is CommunityRule, and who is it for?",
children: "CommunityRule helps groups write operating manuals.",
size: "s",
lgSize: "m",
},
};