import React from "react"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import Header from "@/components/Header"; import { ThemeProvider } from "@/components/theme-provider" const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata = { description: "Diplomarbeiten - HTL Dornbirn", title: "Diplomarbeiten - HTL Dornbirn", }; export default async function RootLayout(props: { children: React.ReactNode }) { const { children } = props; return (
{children}
); }