diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4d187fa..a1a02dd 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,75 +1,21 @@
+
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } 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 poppins = Poppins({
- variable: "--font-poppins",
- subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Best Maths & Science Coaching in Indore | Focus Point",
- description: "Join Focus Point for expert Class 9-12 PCM coaching in Indore. 95%+ board success rate, small batches, personalized attention. Book free demo class now!",
- keywords: "best coaching for class 11 in Indore, PCM coaching Indore, Maths coaching Indore, Science coaching class 9-12, board exam coaching",
- metadataBase: new URL("https://focuspointcoaching.com"),
- alternates: {
- canonical: "https://focuspointcoaching.com",
- },
- openGraph: {
- title: "Focus Point - Best Coaching for Class 9-12 Science & Maths in Indore",
- description: "Expert PCM coaching with 95%+ board success rate. Small batches, personalized attention, free demo class.",
- url: "https://focuspointcoaching.com",
- siteName: "Focus Point Coaching Institute",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/classmates-reading-learning-from-notes-laptop_23-2149265732.jpg",
- alt: "Focus Point - Best Coaching Institute in Indore",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Best Maths & Science Coaching in Indore | Focus Point",
- description: "95%+ board success rate. Expert faculty. Small batches. Book free demo!",
- images: ["http://img.b2bpic.net/free-photo/classmates-reading-learning-from-notes-laptop_23-2149265732.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Focus Point Coaching", description: "Best Coaching for Class 9–12 Science & Maths in Indore"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-