Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

70
node_modules/astro/dist/transitions/index.js generated vendored Normal file
View File

@@ -0,0 +1,70 @@
import { createAnimationScope } from "../runtime/server/transition.js";
const EASE_IN_OUT_QUART = "cubic-bezier(0.76, 0, 0.24, 1)";
function slide({
duration
} = {}) {
return {
forwards: {
old: [
{
name: "astroFadeOut",
duration: duration ?? "90ms",
easing: EASE_IN_OUT_QUART,
fillMode: "both"
},
{
name: "astroSlideToLeft",
duration: duration ?? "220ms",
easing: EASE_IN_OUT_QUART,
fillMode: "both"
}
],
new: [
{
name: "astroFadeIn",
duration: duration ?? "210ms",
easing: EASE_IN_OUT_QUART,
delay: duration ? void 0 : "30ms",
fillMode: "both"
},
{
name: "astroSlideFromRight",
duration: duration ?? "220ms",
easing: EASE_IN_OUT_QUART,
fillMode: "both"
}
]
},
backwards: {
old: [{ name: "astroFadeOut" }, { name: "astroSlideToRight" }],
new: [{ name: "astroFadeIn" }, { name: "astroSlideFromLeft" }]
}
};
}
function fade({
duration
} = {}) {
const anim = {
old: {
name: "astroFadeOut",
duration: duration ?? 180,
easing: EASE_IN_OUT_QUART,
fillMode: "both"
},
new: {
name: "astroFadeIn",
duration: duration ?? 180,
easing: EASE_IN_OUT_QUART,
fillMode: "both"
}
};
return {
forwards: anim,
backwards: anim
};
}
export {
createAnimationScope,
fade,
slide
};