From 3253635e35718cd20b83deea8f8625b72c5e6f79 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 19:02:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 +------------------------------------------- 1 file changed, 8 insertions(+), 1414 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35e8f73..351db98 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GermanFlow - Learn German Online | A1-B1 Courses & Exam Prep", - description: "Master German online with our structured A1, A2, B1 courses and exam preparation for DTZ, Telc, and Goethe. Just €30 per course with lifetime access.", - keywords: "learn German online, German language courses, DTZ exam preparation, Telc exam prep, Goethe exam, German A1 A2 B1, language learning", - openGraph: { - title: "GermanFlow - Learn German Online", - description: "Master German step by step. Beginner to advanced courses plus official exam preparation.", - siteName: "GermanFlow", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Learn German Online | GermanFlow", - description: "Structured courses from A1 to B1 and exam preparation for just €30 each.", - }, -}; + title: "GermanFlow - Learn German Online", description: "Master German at your own pace with structured courses from A1 to B1 levels and exam preparation."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -