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,53 +1,26 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Inter_Tight } from "next/font/google";
import { Inter } from "next/font/google"; import "./styles/variables.css";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const interTight = Inter_Tight({
variable: "--font-halant", subsets: ["latin"], variable: "--font-inter-tight", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: { title: "PMP Certification Study Platform | PMP Prep", description:
index: true, "Master PMP Certification with comprehensive study guides, practice exams, and progress tracking designed for busy professionals."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${interTight.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1416,7 +1389,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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