From 2c5c3a963e55237f123aa3edf7eb2e3c6b1ae788 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 10:59:16 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..3464258 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,51 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Gamo Bayra Boarding Secondary School - Excellence in Education", + description: "Premier boarding secondary school offering academic excellence, character development, and holistic student growth in a supportive community.", + keywords: "boarding school, secondary education, academic excellence, student development, Ethiopia", + openGraph: { + title: "Gamo Bayra Boarding Secondary School", + description: "Excellence in Education for Tomorrow's Leaders", + siteName: "Gamo Bayra", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/students-walking-ramp-near-university-building_23-2147860779.jpg", + alt: "Gamo Bayra School Campus", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Gamo Bayra Boarding Secondary School", + description: "Premier boarding secondary school with academic and holistic excellence", + images: ["http://img.b2bpic.net/free-photo/students-walking-ramp-near-university-building_23-2147860779.jpg"], + }, +}; export default function RootLayout({ children, @@ -31,7 +55,9 @@ export default function RootLayout({ return ( - + {children}