From 6fe062dcc019684c0b01c1f3b9d9833de2169dc6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:49:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 13 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 779f7e9..3880f92 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,27 @@ 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 { Inter_Tight } from "next/font/google"; +import "./styles/variables.css"; 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 interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "PMP Certification Study Platform | Master Your Exam", description: "Prepare for PMP certification with study guides, practice exams, and progress tracking. Join 15K+ certified professionals with our 92% pass rate.", keywords: "PMP certification, project management, exam preparation, study materials, PMBOK", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "PMP Certification Study Platform | Master Your Exam", description: "Comprehensive PMP exam preparation with practice exams and expert guidance. Start your free trial today.", type: "website", siteName: "PMP Prep", images: [ - { - url: "http://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg", alt: "PMP Certification Preparation Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PMP Certification Study Platform", description: "Master PMP certification with comprehensive study materials and practice exams", images: ["http://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg"], - }, -}; + title: "PMP Certification Study Platform | PMP Prep", description: + "Master PMP Certification with comprehensive study guides, practice exams, and progress tracking designed for busy professionals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +