+ ) : null} + + ); + } catch (err) { + return notFound(); + } +} diff --git a/app/[lang]/layout.tsx b/app/[lang]/layout.tsx new file mode 100644 index 000000000..5b96d5ec1 --- /dev/null +++ b/app/[lang]/layout.tsx @@ -0,0 +1,58 @@ +import "../core.css"; +import "../scandic.css"; + +import Footer from "@/components/Current/Footer"; +import LangPopup from "@/components/Current/LangPopup"; +import Script from "next/script"; +import SkipToMainContent from "@/components/SkipToMainContent"; + +import type { Metadata } from "next"; +import type { Params } from "@/types/params"; + +export const metadata: Metadata = { + description: "New web", + title: "Scandic Hotels New Web", +}; + +export default function RootLayout({ + children, + params, +}: React.PropsWithChildren) { + return ( + + +