import type { Meta, StoryObj } from '@storybook/react'; import NextImage from 'next/image'; import { Heading } from '../../atoms'; import { Branding } from './branding'; const meta = { component: Branding, title: 'Molecules/Branding', } satisfies Meta; export default meta; type Story = StoryObj; export const LogoAndTitle: Story = { args: { logo: ( ), name: Your brand name, }, }; export const LogoTitleAndBaseline: Story = { args: { baseline:
Your brand baseline if any
, logo: ( ), name: Your brand name, }, };