diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 26d3e7f..a7bd4fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,65 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Mariado Schools | Academic and Character Excellence", - description: "Private SDA-affiliated school in Arusha, Tanzania offering Nursery, Primary, Secondary and High School education with boarding facilities, sports programs, and university preparation.", - keywords: "Mariado Schools, Arusha, private school, SDA, boarding school, education Tanzania, high school, secondary school", - metadataBase: new URL("https://mariadoschools.edu.tz"), - alternates: { - canonical: "https://mariadoschools.edu.tz", - }, - openGraph: { - title: "Mariado Schools | Academic and Character Excellence with God Ahead", - description: "Excellence in academics and character development since 2014. Nursery to High School education in Usa River, Arusha.", - url: "https://mariadoschools.edu.tz", - siteName: "Mariado Schools", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/students-chatting-near-campus-building_23-2147850666.jpg", - alt: "Mariado Schools Campus", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Mariado Schools | Excellence in Education", - description: "Academic and Character Excellence with God Ahead. SDA-affiliated private school in Arusha, Tanzania.", - images: ["http://img.b2bpic.net/free-photo/students-chatting-near-campus-building_23-2147850666.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mariado Schools - Academic and Character Excellence", description: "Mariado Schools: Academic and Character Excellence with God Ahead. Nurturing young minds for excellence in academics and character development since 2014."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +