diff --git a/components/Breadcrumbs/index.tsx b/components/Breadcrumbs/index.tsx index 1a9831d41..1d6cada8d 100644 --- a/components/Breadcrumbs/index.tsx +++ b/components/Breadcrumbs/index.tsx @@ -11,9 +11,9 @@ const BreadCrumbs: React.FC = ({ sections }) => {
- + className="flex gap-x-2 bg-theme-quinary bg-opacity-20 text-text-primary-light dark:text-text-quaternary text-lg py-0.5 px-2.5 rounded-lg cursor-pointer + border-light-silver border-2 border-opacity-75"> +
Home
@@ -23,19 +23,21 @@ const BreadCrumbs: React.FC = ({ sections }) => { + className="flex gap-x-2 bg-theme-quinary bg-opacity-20 text-text-primary-light dark:text-text-quaternary text-lg py-0.5 px-2.5 rounded-lg capitalize cursor-pointer + border-dark-silver border-2 border-opacity-75"> {section.name?.split('-').join(' ')} ))}
-
+
+
+ {sections[0].name}
{sections[0].name?.split('-').join(' ')}
diff --git a/components/Cards/Card.tsx b/components/Cards/Card.tsx index 6bd1fd225..6cd73c074 100644 --- a/components/Cards/Card.tsx +++ b/components/Cards/Card.tsx @@ -27,7 +27,7 @@ export const Card: FC = ({ data, onClick }) => { }, []) return ( -
+

= ({ cards }) => { return ( <> -
    +
      {cards.map((data: IData) => ( { const isDarkMode = resolvedTheme === 'dark' return ( -