From c583ae1afa2e391867138a3ef4eae9e3005defbf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 05:07:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 66 +++++----------------------------------------- 1 file changed, 7 insertions(+), 59 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d468534..54c094c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,71 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EduLearn Academy - Learn New Skills Online", - description: "Access 500+ expert-led courses in web development, data science, digital marketing, and more. Start learning today with flexible schedules and lifetime access.", - keywords: "online learning, courses, education platform, web development, data science, professional development", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "EduLearn Academy - Transform Your Career", - description: "Join 125K+ students learning new skills online. Expert instructors, flexible schedules, certified courses.", - type: "website", - siteName: "EduLearn Academy", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg", - alt: "EduLearn Academy - Online Learning Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Learn New Skills Online - EduLearn Academy", - description: "Expert-led courses in tech, business, and creative skills. Start your learning journey today.", - images: [ - "http://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg", - ], - }, -}; + title: "EduLearn - Expert-Led Online Courses", description: "Join thousands of students transforming their careers through comprehensive, industry-aligned educational programs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}