Files
am-d-model.eu/src/lib/navigation.js
2025-04-17 09:18:04 +01:00

16 lines
429 B
JavaScript

import { goto } from "$app/navigation";
import { error } from "@sveltejs/kit";
export const navigation = {
toHome: () => goto("/"),
toAbout: () => goto("/about"),
toContact: () => goto("/contact"),
toRepository: () => {
window.location.href = "https://invenio.am-d-model.eu/";
},
toMethodology: () => goto("/methodology"),
to404: () => {
throw error(404, "Page not found");
},
};