Skip to content

Commit

Permalink
Add-Ons breadcrumb nav
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Apr 17, 2024
1 parent 51cae6a commit 21744c4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/routes/app/add-ons/+layout.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { breadcrumbTrail } from "$lib/utils/navigation";

export async function load({ url, fetch, parent }) {
const breadcrumbs = await breadcrumbTrail(parent, [
{ href: "/app/add-ons", title: "Add-Ons" },
]);
return {
breadcrumbs,
};
}

0 comments on commit 21744c4

Please sign in to comment.