5 Commits

Author SHA1 Message Date
5b9074a7b7 Update src/app/styles/base.css 2026-03-05 18:49:09 +00:00
6fe062dcc0 Update src/app/layout.tsx 2026-03-05 18:49:08 +00:00
22ac54febc Merge version_1 into main
Merge version_1 into main
2026-03-05 18:45:15 +00:00
e9d2a62ddc Merge version_1 into main
Merge version_1 into main
2026-03-05 18:44:20 +00:00
365ec31011 Merge version_1 into main
Merge version_1 into main
2026-03-05 18:42:56 +00:00
2 changed files with 15 additions and 43 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${interTight.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1389,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}