Update src/app/layout.tsx

This commit is contained in:
2026-03-16 22:05:38 +00:00
parent c451fd84cd
commit 735782c81d

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +66,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}