Using span instead of Link
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
import { ChevronRightIcon, HouseIcon } from "@/components/Icons"
|
import { ChevronRightIcon, HouseIcon } from "@/components/Icons"
|
||||||
import Link from "@/components/TempDesignSystem/Link"
|
|
||||||
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
|
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
|
||||||
|
|
||||||
import styles from "./breadcrumbs.module.css"
|
import styles from "./breadcrumbs.module.css"
|
||||||
@@ -9,14 +8,9 @@ export default function BreadcrumbsSkeleton() {
|
|||||||
<nav className={styles.breadcrumbs}>
|
<nav className={styles.breadcrumbs}>
|
||||||
<ul className={styles.list}>
|
<ul className={styles.list}>
|
||||||
<li className={styles.listItem}>
|
<li className={styles.listItem}>
|
||||||
<Link
|
<span className={styles.homeLink} color="peach80">
|
||||||
className={styles.homeLink}
|
|
||||||
color="peach80"
|
|
||||||
href={""}
|
|
||||||
variant="breadcrumb"
|
|
||||||
>
|
|
||||||
<HouseIcon color="peach80" />
|
<HouseIcon color="peach80" />
|
||||||
</Link>
|
</span>
|
||||||
<ChevronRightIcon aria-hidden="true" color="peach80" />
|
<ChevronRightIcon aria-hidden="true" color="peach80" />
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user