Merge branch 'develop'

This commit is contained in:
Linus Flood
2024-11-07 10:20:12 +01:00
261 changed files with 5132 additions and 2106 deletions

View File

@@ -1,6 +1,6 @@
import { serverClient } from "@/lib/trpc/server"
import { ChevronRightIcon, HouseIcon } from "@/components/Icons"
import { ChevronRightSmallIcon, HouseIcon } from "@/components/Icons"
import Link from "@/components/TempDesignSystem/Link"
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
@@ -24,9 +24,9 @@ export default async function Breadcrumbs() {
href={homeBreadcrumb.href!}
variant="breadcrumb"
>
<HouseIcon color="peach80" />
<HouseIcon width={16} height={16} color="peach80" />
</Link>
<ChevronRightIcon aria-hidden="true" color="peach80" />
<ChevronRightSmallIcon aria-hidden="true" color="peach80" />
</li>
) : null}
@@ -41,7 +41,7 @@ export default async function Breadcrumbs() {
>
{breadcrumb.title}
</Link>
<ChevronRightIcon aria-hidden="true" color="peach80" />
<ChevronRightSmallIcon aria-hidden="true" color="peach80" />
</li>
)
}