diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a933ac9..c178e6c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Raleway } 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 raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "DM Valley School - Excellence in Education", description: "Premier educational institution offering academic excellence, innovative programs, and holistic development for students. Explore our campus and programs today.", keywords: "school, education, academics, students, learning, admissions, excellence", metadataBase: new URL("https://dmvalleyschool.edu"),
- alternates: {
- canonical: "https://dmvalleyschool.edu"},
- openGraph: {
- title: "DM Valley School - Excellence in Education", description: "Join our vibrant learning community. Academic excellence meets innovation at DM Valley School.", type: "website", siteName: "DM Valley School"},
- twitter: {
- card: "summary_large_image", title: "DM Valley School - Excellence in Education", description: "Premier educational institution offering academic excellence and innovative learning programs."},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "DM Valley School", description: "Premier educational institution offering excellence in academics, innovation, and character development."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-