From 3a1f27f33166426d103c8bffb3fe4a27d299b232 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:32:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa984c0..4e8ae8a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Poppins } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Learning Hub - Empower Your Educational Journey", description: "Discover world-class education programs. Flexible online courses, intensive bootcamps, and corporate training solutions for career transformation.", keywords: "online education, learning programs, bootcamp, career training, professional development, courses", openGraph: { - title: "Learning Hub - Transform Your Career", description: "Join thousands of successful learners. Explore flexible online courses, bootcamps, and corporate training.", type: "website", siteName: "Learning Hub", images: [ - { - url: "http://img.b2bpic.net/free-photo/laughing-students-desktop_23-2147655933.jpg", alt: "Education center learning community"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Learning Hub - Empower Your Future", description: "World-class education programs designed for your success.", images: ["http://img.b2bpic.net/free-photo/laughing-students-desktop_23-2147655933.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Learning Hub", description: "Discover world-class education programs designed to unlock your potential."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}