diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f815a9..401984e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); export const metadata: Metadata = { - title: "School Name - Quality Education & Excellence", - description: "Welcome to our school offering quality education with experienced teachers, modern curriculum, and a welcoming community. Admissions open now.", - keywords: "school, education, admissions, curriculum, quality education, students, learning", - metadataBase: new URL("https://school.example.com"), - alternates: { - canonical: "https://school.example.com", - }, - openGraph: { - title: "School Name - Quality Education & Excellence", - description: "Welcome to our school offering quality education with experienced teachers, modern curriculum, and a welcoming community.", - url: "https://school.example.com", - siteName: "School Name", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/new-york-city-manhattan-central-park_649448-1437.jpg", - alt: "School Building", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "School Name - Quality Education & Excellence", - description: "Welcome to our school offering quality education with experienced teachers, modern curriculum, and a welcoming community.", - images: ["http://img.b2bpic.net/free-photo/new-york-city-manhattan-central-park_649448-1437.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Школа №9", description: "Welcome to School №9 - Excellence in Education"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -