Viel Spaß, Ramez

This commit is contained in:
BuildTools
2025-12-19 18:25:38 +01:00
parent 96e46507c8
commit 5d780e0c36
16 changed files with 435 additions and 116 deletions

View File

@@ -1,34 +1,20 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: 'GSH Digital Services'
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}
type Props = Readonly<{
children: React.ReactNode;
}>
export default function RootLayout({ children }: Props) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
);
}