From 8ab1a4ef718b6a0eb0b297bc4eebbf384d15fe4f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:37:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 7 insertions(+), 1414 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b6847b5..edbf939 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EduShare - Educational Materials Marketplace", - description: "Discover and share quality educational materials including slides, presentations, coursework, and diploma works. Trust platform with secure payments, ratings, and downloads.", - keywords: "educational materials, slides, presentations, coursework, diploma works, students, teachers, marketplace, learning resources", - openGraph: { - title: "EduShare - Find Educational Materials Instantly", - description: "The trusted platform where students and teachers buy, sell, and share quality educational resources.", - siteName: "EduShare", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "EduShare - Educational Materials Marketplace", - description: "Discover quality educational materials from trusted educators and students worldwide.", - }, -}; + title: "EduShare - Educational Materials Marketplace", description: "Discover and share high-quality educational materials from trusted students and teachers worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -