diff --git a/src/components/Button.astro b/src/components/Button.astro index a752c10..2654096 100644 --- a/src/components/Button.astro +++ b/src/components/Button.astro @@ -10,6 +10,7 @@ interface Props { } const { light: { background: lightMode }, dark: { background: darkMode } } = themeConfig.color +const reduceMotion = themeConfig.global.reduceMotion const { supportedLangs } = Astro.props const currentPath = Astro.url.pathname @@ -61,7 +62,10 @@ const nextUrl = useSupportedLangs -