15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: 'Gasol247 Bokning',
|
|
template: '%s — Gasol247 Bokning',
|
|
},
|
|
description: 'Boka gasoltuber till Jamboree-lägret.',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|