test(ci): add exporter heading levels and a11y typography smoke; update MAIN_PLAN

This commit is contained in:
2025-11-14 16:40:45 +09:00
parent aaa624a046
commit a9bbc357e7
92 changed files with 8370 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
import type { ReactNode } from 'react'
import { getMessages } from '@/lib/i18n/getMessages'
import type { AppLocale } from '@/lib/i18n/locales'
import I18nProvider from '@/components/I18nProvider'
import '../globals.css'
export const dynamic = 'force-static'
export default async function LocaleLayout({
children,
params,
}: {
children: ReactNode
params: Promise<{ locale: AppLocale }>
}) {
const { locale } = await params
const messages = await getMessages(locale)
return (
<html lang={locale}>
<body>
<I18nProvider locale={locale} messages={messages}>{children}</I18nProvider>
</body>
</html>
)
}