From d17d894f398650209c0ddd29502308de8c07bd93 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 27 Sep 2023 18:43:25 +0200 Subject: feat(components): add Article, Aside, Footer, Header, Main & Nav Some components have been renamed to be able to create Footer, Header and Nav. --- src/components/organisms/layout/footer.tsx | 75 ------------------------------ 1 file changed, 75 deletions(-) delete mode 100644 src/components/organisms/layout/footer.tsx (limited to 'src/components/organisms/layout/footer.tsx') diff --git a/src/components/organisms/layout/footer.tsx b/src/components/organisms/layout/footer.tsx deleted file mode 100644 index 36e85a7..0000000 --- a/src/components/organisms/layout/footer.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import type { FC } from 'react'; -import { useIntl } from 'react-intl'; -import { Copyright, type CopyrightProps } from '../../atoms'; -import { - BackToTop, - type BackToTopProps, - Nav, - type NavItem, -} from '../../molecules'; -import styles from './footer.module.scss'; - -export type FooterProps = { - /** - * Set additional classnames to the back to top button. - */ - backToTopClassName?: BackToTopProps['className']; - /** - * Set additional classnames to the footer element. - */ - className?: string; - /** - * Set the copyright information. - */ - copyright: CopyrightProps; - /** - * The footer nav items. - */ - navItems?: NavItem[]; - /** - * An element id (without hashtag) used as anchor for back to top button. - */ - topId: string; -}; - -/** - * Footer component - * - * Renders a footer with copyright and nav; - */ -export const Footer: FC = ({ - backToTopClassName, - className = '', - copyright, - navItems, - topId, -}) => { - const intl = useIntl(); - const ariaLabel = intl.formatMessage({ - defaultMessage: 'Footer', - description: 'Footer: an accessible name for footer nav', - id: 'd4N8nD', - }); - const footerClass = `${styles.wrapper} ${className}`; - const btnClass = `${styles['back-to-top']} ${backToTopClassName}`; - - return ( - - ); -}; -- cgit v1.2.3