diff --git a/astro.config.mjs b/astro.config.mjs index 2d35aa0..5063d8f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -48,6 +48,7 @@ export default defineConfig({ output: 'server', adapter: node({ mode: 'standalone' }), redirects: { + '/en/[...params]': '/[...params]', '/anim/[id]': { status: 307, destination: '/maintenance' }, '/anim/list': { status: 307, destination: '/maintenance' }, '/game/[slug]': { status: 307, destination: '/maintenance' }, diff --git a/src/components/form/Input.tsx b/src/components/form/Input.tsx index 9ee79a7..3a52d7d 100644 --- a/src/components/form/Input.tsx +++ b/src/components/form/Input.tsx @@ -54,14 +54,21 @@ export function InputArea(props: CustomInputProps & Omit) { - const { name, className, dark = false, label, ...attrs } = props + const { name, className, dark = false, label, children, ...attrs } = props return (
{label} - + {children} +
) } diff --git a/src/pages/404.astro b/src/pages/404.astro index b441d2a..bda4d3b 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -9,7 +9,7 @@ import BaseLayout from '../layouts/base.astro'
Boat Goes Binted
-