diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7ac0029..3bfa20a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,63 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
+const geist_mono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "St Peter's School Jaipur - Quality Education in Bapu Nagar",
- description: "Quality school in Bapu Nagar, Jaipur for grades 1-12. Academic excellence, modern facilities, and holistic development. Apply for admission today.",
- keywords: "school in Bapu Nagar Jaipur, best school Jaipur, secondary school, admission school Jaipur, schools near Sanganer",
- openGraph: {
- title: "St Peter's School - Quality Education for a Bright Future",
- description: "Join St Peter's School in Bapu Nagar, Jaipur. Academic excellence, character development, and modern facilities for students aged 5-16.",
- type: "website",
- siteName: "St Peter's School",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg",
- alt: "St Peter's School - Happy students learning",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "St Peter's School Jaipur",
- description: "Quality education focused on academic excellence and character development. Apply for admission now.",
- images: ["http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Create Next app", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-