From 735782c81d4ec24e3375ac0e9cd195a6fc5d19dc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 22:05:38 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..256fe60 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Lost & Found - High School Item Recovery System", + description: "Simple, secure lost and found system for high school students. Report found items, search for your belongings, and claim them safely.", + keywords: "lost and found, high school, item recovery, school community, lost items", + openGraph: { + title: "Lost & Found - Find Your Items", + description: "High school lost and found management system. Report, search, and claim items easily.", + siteName: "Lost & Found", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Lost & Found System", + description: "Find your lost items in our school community lost and found system.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}