chore: initial commit

This commit is contained in:
Johan Cedercrona
2023-12-21 14:25:10 +00:00
committed by Michael Zetterberg
commit 8922483870
12 changed files with 3862 additions and 0 deletions

16
app/layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
import type { Metadata } from 'next';
import './globals.css';
import type { PropsWithChildren } from 'react';
export const metadata: Metadata = {
title: 'Scandic Hotels New Web',
description: 'New web',
};
export default function RootLayout({ children }: PropsWithChildren) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}