fix(ui): use minmax for bento grid to prevent overflow

This commit is contained in:
2026-06-22 22:35:43 +02:00
parent 10f5dd9774
commit 66fb4f3939
3 changed files with 10834 additions and 2329 deletions

View File

@@ -10,7 +10,7 @@ export const runtime = 'nodejs';
export default async function Image({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params;
const t = await getTranslations({ locale, namespace: 'Index.meta' });
const fonts = await getOgFonts();
const bg = getOgBackground();
const logo = getOgLogo();
@@ -27,4 +27,4 @@ export default async function Image({ params }: { params: Promise<{ locale: stri
fonts,
},
);
}
}