diff --git a/src/pages/Components/ComponentsInfo/BreadcrumbInfo.jsx b/src/pages/Components/ComponentsInfo/BreadcrumbInfo.jsx index c889a2b..34a808f 100644 --- a/src/pages/Components/ComponentsInfo/BreadcrumbInfo.jsx +++ b/src/pages/Components/ComponentsInfo/BreadcrumbInfo.jsx @@ -84,178 +84,178 @@ const BreadcrumbInfo = () => { const tabCodeClicked = e => changeCodeTab(e); return ( -
- Breadcrumb - - Brødsmuler er en navigasjonshjelp som gir brukeren informasjon om hvor - de befinner seg på nettstedet, ved en kombinasjon av lenker som er - plassert under toppfeltet på en side. - +
+ Breadcrumb + + Brødsmuler er en navigasjonshjelp som gir brukeren informasjon om hvor + de befinner seg på nettstedet, ved en kombinasjon av lenker som er + plassert under toppfeltet på en side. + - - + + - {activeTab === '/overview' && ( -
- - Brødsmuler - -
- - Brødsmulene hjelper brukeren å se hvor de befinner seg på - nettstedet. Ved å følge lenkene til tidligere sider/nivåer, vil - brødsmulene fungere som en enkel navigasjon til foregående sider - og innhold. - -
-
- -
-
- - - {activeCodeTab === '/react' && ( - - )} - {activeCodeTab === '/html' && ( - - )} -
+ {activeTab === "/overview" && ( +
+ + Brødsmuler + +
+ + Brødsmulene hjelper brukeren å se hvor de befinner seg på + nettstedet. Ved å følge lenkene til tidligere sider/nivåer, vil + brødsmulene fungere som en enkel navigasjon til foregående sider + og innhold. + +
+
+ +
+
+ + + {activeCodeTab === "/react" && ( + + )} + {activeCodeTab === "/html" && ( + + )} +
- + -
- - Brødsmuler - -
- - The mobileCompressedView shows a compact breadcrumb on mobile, - displaying the second-to-last item with a left arrow. - -
-
- } standAlone> - breadcrumb 2 - -
-
- - {activeCodeTab === '/react' && ( - - )} -
-
-
- )} +
+ + Brødsmuler + +
+ + mobileCompressedView viser en kompakt brødsmulevisning på mobil, + der den nest siste elementet vises med en venstre pil. + +
+
+ } standAlone> + breadcrumb 2 + +
+
+ + {activeCodeTab === "/react" && ( + + )} +
+
+
+ )} - {activeTab === '/rationale' && ( -
- - Location based breadcrumbs - -
- - We have opted for a location based breadcrumbs as it gives the - user a good overview of where in the website hierarchy they are - currently in, instead of path based breadcrumb which only show the - path that the user have browsed. - -
+ {activeTab === "/rationale" && ( +
+ + Location based breadcrumbs + +
+ + We have opted for a location based breadcrumbs as it gives the + user a good overview of where in the website hierarchy they are + currently in, instead of path based breadcrumb which only show the + path that the user have browsed. + +
- - Simplistic design - -
- - As breadcrumbs are a secondary navigation, the overall design of - breadcrumbs has been kept at a very simplistic level to avoid it - being too prominent or confused for being a main navigational - element. - -
-
- )} + + Simplistic design + +
+ + As breadcrumbs are a secondary navigation, the overall design of + breadcrumbs has been kept at a very simplistic level to avoid it + being too prominent or confused for being a main navigational + element. + +
+
+ )} - {activeTab === '/props' && ( -
- - Props - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Prop name - - Type - - Description -
- className - stringOptional container class
- items - Required array of objects - A list of objects. Object key text is required,{' '} - link is optional. -
- mobileCompressedView - boolean - A prop that makes the breadcrumb compressed on mobile view -
+ {activeTab === "/props" && ( +
+ + Props + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Prop name + + Type + + Description +
+ className + stringOptional container class
+ items + Required array of objects + A list of objects. Object key text is required,{" "} + link is optional. +
+ mobileCompressedView + boolean + A prop that makes the breadcrumb compressed on mobile view +
- + -
- Depends on -
    -
  • - - Link - -
  • -
-
-
- )} -
- ); +
+ Depends on +
    +
  • + + Link + +
  • +
+
+
+ )} +
+ ); }; export default BreadcrumbInfo;