{this.state.errorInfo.componentStack}
- {description}
- ); - -export default CategoryDescription; diff --git a/src/components/Links/CategoryDescription/category-description.module.scss b/src/components/Links/CategoryDescription/category-description.module.scss deleted file mode 100644 index aec1f18..0000000 --- a/src/components/Links/CategoryDescription/category-description.module.scss +++ /dev/null @@ -1,4 +0,0 @@ -.category-description { - font-size: 0.85em; - margin-bottom: 0.5em; -} diff --git a/src/components/Links/CategoryHeader/CategoryHeader.tsx b/src/components/Links/CategoryHeader/CategoryHeader.tsx deleted file mode 100644 index 1a1aefc..0000000 --- a/src/components/Links/CategoryHeader/CategoryHeader.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { CategoryWithLinks } from 'types/types'; -import styles from './category-header.module.scss'; -import VisibilityBadge from 'components/Visibility/Visibility'; -import { useTranslation } from 'next-i18next'; - -export default function CategoryHeader({ - activeCategory: { name, links, visibility }, -}: { - activeCategory: CategoryWithLinks; -}) { - const { t } = useTranslation(); - return ( -{t('home:select-category')}
-{children}
-); - -export default Quotes; diff --git a/src/components/Quotes/quotes.module.scss b/src/components/Quotes/quotes.module.scss deleted file mode 100644 index 3158e4c..0000000 --- a/src/components/Quotes/quotes.module.scss +++ /dev/null @@ -1,25 +0,0 @@ -@import 'styles/colors.scss'; - -.quotes { - position: relative; - width: fit-content; - white-space: pre-wrap; - text-align: center; - font-style: italic; - color: rgba($color: $black, $alpha: 0.75); - - &::before { - position: absolute; - left: -0.65em; - content: '“'; - font-family: sans-serif; - font-size: 2.25em; - } - &::after { - position: absolute; - right: -0.5em; - content: '”'; - font-family: sans-serif; - font-size: 2.25em; - } -} diff --git a/src/components/RoundedImage/RoundedImage.tsx b/src/components/RoundedImage/RoundedImage.tsx deleted file mode 100644 index 004928b..0000000 --- a/src/components/RoundedImage/RoundedImage.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import Image from 'next/image'; -import styles from './rounded-image.module.scss'; - -export default function RoundedImage({ - src, - width = 24, - height = 24, - alt, -}: (typeof Image)['defaultProps']) { - if (!src) { - console.warn('No src provided'); - return <>>; - } - return ( -