diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6dda375..6ebe356 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,22 @@
-import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Public_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import type { Metadata } from 'next';
+import { Inter } from 'next/font/google';
+import './globals.css';
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
- title: "O-Levels Study Materials | $10 Complete Notes & Lectures", description: "Affordable O-levels study materials with comprehensive notes and video lectures. All subjects at $10. Instant access, lifetime support. Pass your exams with confidence.", keywords: "O-levels notes, O-levels study materials, exam preparation, video lectures, study guides, affordable education", openGraph: {
- title: "Master O-Levels With Complete Study Resources - NoteVault", description: "Complete O-levels study packages including detailed notes and professional video lectures. Just $10 per subject.", type: "website", siteName: "NoteVault"},
- twitter: {
- card: "summary_large_image", title: "O-Levels Study Materials | NoteVault", description: "Affordable comprehensive study materials for O-levels with video lectures"},
- robots: {
- index: true,
- follow: true,
- },
+ title: 'NoteVault - O-Levels Study Materials',
+ description: 'Comprehensive O-Levels study materials including notes and recorded lectures for all subjects at $10 per subject.',
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-