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
+37
View File
@@ -0,0 +1,37 @@
import type { Meta, StoryObj } from "@storybook/react";
import AboutHeader from "../../app/components/type/AboutHeader";
const meta: Meta<typeof AboutHeader> = {
title: "Components/Type/AboutHeader",
component: AboutHeader,
parameters: {
layout: "fullscreen",
backgrounds: { default: "dark" },
},
};
export default meta;
type Story = StoryObj<typeof AboutHeader>;
export const Default: Story = {
args: {
segments: [
{ type: "word", text: "CommunityRule" },
{ type: "icon", icon: "arrow" },
{ type: "word", text: "is" },
{ type: "word", text: "a" },
{ type: "word", text: "tool" },
{ type: "word", text: "that" },
{ type: "word", text: "helps" },
{ type: "word", text: "groups" },
{ type: "icon", icon: "about" },
{ type: "word", text: "define" },
{ type: "word", text: "who" },
{ type: "word", text: "they" },
{ type: "word", text: "want" },
{ type: "word", text: "to" },
{ type: "word", text: "be" },
],
},
};