Skip to content

Commit 62130d0

Browse files
committed
Remove unused HTML layout component from sponsor layout
1 parent c51aad9 commit 62130d0

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

internal

site/app/[locale]/sponsor/layout.tsx

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Body from 'internal/layouts/body'
22
import i18n from 'internal/common/i18n.config.mjs'
33
import DocHeader from 'internal/components/DocHeader'
4-
import HTML from 'internal/layouts/html'
54

65
export async function generateStaticParams() {
76
return i18n.locales.map((locale: any) => ({ locale }))
@@ -12,11 +11,9 @@ export default async function Layout({ children, locale }: {
1211
locale: typeof i18n.locales[number]
1312
}) {
1413
return (
15-
<HTML locale={locale}>
16-
<Body className="bg:base">
17-
<DocHeader contained />
18-
{children}
19-
</Body>
20-
</HTML>
14+
<Body className="bg:base">
15+
<DocHeader contained />
16+
{children}
17+
</Body>
2118
)
2219
}

0 commit comments

Comments
 (0)