diff --git a/lawfirm-demos/demo-1/app/layout.tsx b/lawfirm-demos/demo-1/app/layout.tsx index f7fa87e..3ee7bdf 100644 --- a/lawfirm-demos/demo-1/app/layout.tsx +++ b/lawfirm-demos/demo-1/app/layout.tsx @@ -1,34 +1,23 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import {Inter} from "next/font/google"; +import Navbar from "@/components/Navbar"; +import Footer from "@/components/Footer"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); +const inter = Inter({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 = { + title: "Kanzlei Mustermann", + description: "Kompetente Rechtsberatung in allen Lebenslagen", }; -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - {children} - - - ); +export default function RootLayout({children}: { children: React.ReactNode }) { + return ( + + + +
{children}
+