feat(SW-2781): Setup SAS partner site * Add boilerplate for SAS partner site * Fonts * netlify.toml Approved-by: Linus Flood
30 lines
818 B
TypeScript
30 lines
818 B
TypeScript
import "@scandic-hotels/design-system/style.css"
|
|
import "@scandic-hotels/design-system/fonts.css"
|
|
import "@/public/_static/css/design-system-new-deprecated.css"
|
|
import "./globals.css"
|
|
|
|
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
<link rel="stylesheet" href="/_static/css/core.css" />
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
<link rel="stylesheet" href="/_static/css/scandic.css" />
|
|
</head>
|
|
<body className="scandic">{children}</body>
|
|
</html>
|
|
)
|
|
}
|