diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..f1aa27c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,34 +1,24 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import React from "react"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", +export const metadata = { + description: "Diplomarbeiten - HTL Dornbirn", + title: "Diplomarbeiten - HTL Dornbirn", }; -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - -
- {children} - - - ); +export default async function RootLayout(props: { children: React.ReactNode }) { + const { children } = props; + + return ( + + +