17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
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>
|
|
);
|
|
}
|