import { Meta, StoryObj } from '@storybook/react' import { MegaMenu } from './MegaMenu' const meta: Meta = { component: MegaMenu, } type Story = StoryObj; export default meta export const TwoColumns: Story = { args: { bibleText: "Ich will den HERRN loben allezeit; sein Lob soll immerdar in meinem Munde sein. Meine Seele soll sich rühmen des HERRN, dass es die Elenden hören und sich freuen.", bibleBook: "Psalm 34 2,3", groups: [ { title: "Sakramenten", items: [ { title: "Taufe", description: "Neues Leben in Christus", href: "https://" }, { title: "Eucharistie", description: "Gemeinschaft durch Brot und Wein", href: "https://" }, { title: "Firmung", description: "Stärkung im Heiligen Geist", href: "https://" }, { title: "Ehe", description: "Bund in Liebe, Treue", href: "https://" }, { title: "Beichte", description: "Sündenbekenntnis, Vergebung und Neuanfang mit Gottes Gnade", href: "https://" }, { title: "Krankensalbung", description: "Stärkung und Gottes Beistand", href: "https://" } ] }, { title: "Gebet", items: [ { title: "Gottesdienste", description: "Begegnung mit Gott", href: "https://" }, { title: "Rosenkranz", description: "Gebet der Meditation", href: "https://" }, { title: "Anbetung", description: "Stille Begegnung mit Gott", href: "https://" }, { title: "Lobpreis", description: "Dank, Ehre und Freude", href: "https://" }, ] } ] }, } export const ThreeColumns = { args: { bibleText: "„Denn wo zwei oder drei in meinem Namen versammelt sind, da bin ich mitten unter ihnen.“", bibleBook: "Jacc 45", groups: [ { title: "Gemeinden", items: [ { title: "St. Richard", description: "Mehr informationen", href: "https://" }, { title: "St. Christophorus", description: "Mehr informationen", href: "https://" }, { title: "St. Clara", description: "Mehr informationen", href: "https://" }, ] }, { title: "Gruppen", items: [ { title: "Kathoccino", description: "Begegnung mit Gott", href: "https://" }, { title: "Credo & Agape", description: "Gebet der Meditation", href: "https://" }, { title: "Mädchengruppe", description: "Stille Begegnung mit Gott", href: "https://" }, { title: "Alphakurs", description: "Dank, Ehre und Freude", href: "https://" }, ] }, { title: "Aktivitaten", items: [ { title: "Kochen", description: "Begegnung mit Gott", href: "https://", }, { title: "Lernen", description: "Gebet der Meditation", href: "https://" }, { title: "Wandern", description: "Stille Begegnung mit Gott", href: "https://" }, { title: "Singen", description: "Dank, Ehre und Freude", href: "https://" }, ] } ] } }