From 86e9e7e0fd178e4a863c987a2a0772bc32843d55 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:21:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 75 +++++----------------------------------------- 1 file changed, 7 insertions(+), 68 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 106a43e..6fa68f0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,80 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ClassHub - Modern School Management Platform", - description: "Modern school class management platform with student profiles, class selection, and administrative tools. Connect, organize, and manage your school experience with ClassHub.", - keywords: "school, class management, students, education, platform", - metadataBase: new URL("https://classhub.example.com"), - alternates: { - canonical: "https://classhub.example.com", - }, - openGraph: { - title: "ClassHub - Modern School Management Platform", - description: "Connect with your classmates and manage student information on ClassHub.", - url: "https://classhub.example.com", - siteName: "ClassHub", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/women-chatting-gym-door_1262-699.jpg", - alt: "ClassHub Welcome", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ClassHub - Modern School Management Platform", - description: "Modern school class management platform with student profiles and administrative tools.", - images: ["http://img.b2bpic.net/free-photo/women-chatting-gym-door_1262-699.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ClassHub", description: "A modern platform for managing school classes, student profiles, and educational information."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}