Files
web/app/[lang]/(preview)/layout.tsx
Christel Westerberg d625e42f49 fix: cleanup "new" pages
2024-02-22 10:00:14 +01:00

23 lines
508 B
TypeScript

import type { Metadata } from "next"
import type { LangParams, LayoutArgs } from "@/types/params"
import InitLivePreview from "@/components/Current/LivePreview"
export const metadata: Metadata = {
description: "New web",
title: "Scandic Hotels New Web",
}
export default function RootLayout({
children,
params,
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
return (
<html lang={params.lang}>
<body>
<InitLivePreview />
{children}
</body>
</html>
)
}