Merge branch 'main' into refactor/app

This commit is contained in:
mr. m
2025-05-15 08:29:41 +02:00
committed by GitHub
26 changed files with 948 additions and 371 deletions

View File

@@ -1,16 +1,16 @@
---
import Button from "~/components/Button.astro";
import Description from "~/components/Description.astro";
import Layout from "~/layouts/Layout.astro";
import { getLocale, getUI } from "~/utils/i18n";
export { getStaticPaths } from "~/utils/i18n";
import Button from '~/components/Button.astro'
import Description from '~/components/Description.astro'
import Layout from '~/layouts/Layout.astro'
import { getLocale, getUI } from '~/utils/i18n'
export { getStaticPaths } from '~/utils/i18n'
const locale = getLocale(Astro);
const locale = getLocale(Astro)
const {
routes: { about },
layout,
} = getUI(locale);
routes: { about },
layout,
} = getUI(locale)
---
<Layout