From 891441a76173c708c6604fa203b175aefa222333 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 9 Oct 2023 16:31:00 +0200 Subject: refactor(components): rewrite Branding component The component should only be responsible of the layout for the logo, the name and the optional baseline. Also, the homepage url could be different from `/` so the consumer should give the right url. --- .../molecules/layout/branding.stories.tsx | 115 --------------------- 1 file changed, 115 deletions(-) delete mode 100644 src/components/molecules/layout/branding.stories.tsx (limited to 'src/components/molecules/layout/branding.stories.tsx') diff --git a/src/components/molecules/layout/branding.stories.tsx b/src/components/molecules/layout/branding.stories.tsx deleted file mode 100644 index 7ff88c9..0000000 --- a/src/components/molecules/layout/branding.stories.tsx +++ /dev/null @@ -1,115 +0,0 @@ -import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import NextImage from 'next/image'; -import { Logo } from '../../atoms'; -import { Branding } from './branding'; - -/** - * Branding - Storybook Meta - */ -export default { - title: 'Molecules/Layout/Branding', - component: Branding, - args: { - isHome: false, - withLink: false, - }, - argTypes: { - baseline: { - control: { - type: 'text', - }, - description: 'The Branding baseline.', - type: { - name: 'string', - required: false, - }, - }, - isHome: { - control: { - type: 'boolean', - }, - description: 'Use H1 if the current page is homepage.', - table: { - category: 'Options', - defaultValue: { summary: false }, - }, - type: { - name: 'boolean', - required: false, - }, - }, - photo: { - control: { - type: 'text', - }, - description: 'The Branding photo.', - type: { - name: 'string', - required: true, - }, - }, - title: { - control: { - type: 'text', - }, - description: 'The Branding title.', - type: { - name: 'string', - required: true, - }, - }, - withLink: { - control: { - type: 'boolean', - }, - description: 'Wraps the title with a link to homepage.', - table: { - category: 'Options', - defaultValue: { summary: false }, - }, - type: { - name: 'boolean', - required: false, - }, - }, - }, -} as ComponentMeta; - -const Template: ComponentStory = (args) => ( - -); - -/** - * Branding Stories - Default - */ -export const Default = Template.bind({}); -Default.args = { - logo: , - photo: ( - - ), - title: 'Website title', -}; - -/** - * Branding Stories - With baseline - */ -export const WithBaseline = Template.bind({}); -WithBaseline.args = { - baseline: 'Maiores corporis qui', - logo: , - photo: ( - - ), - title: 'Website title', -}; -- cgit v1.2.3