initial booking

This commit is contained in:
Ola Malmgren
2026-05-22 10:50:48 +02:00
commit 4d705a1005
77 changed files with 13827 additions and 0 deletions

14
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
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;
}