From fd5f6dadaff4331860e05d07c2036905b08876ff Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:29:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 52 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 74b2b53..e26825e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SilkGuard - AI Disease Prediction for Sericulture", - description: "Transform silkworm health monitoring with multimodal ML. Early detection of Pebrine, Grasserie, Flacherie, Muscardine diseases.", - keywords: "silkworm disease detection, sericulture AI, machine learning agriculture, cocoon yield", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SilkGuard - AI-Powered Silkworm Health Monitoring", - description: "Revolutionizing sericulture with intelligent disease prediction and early detection technology.", - type: "website", - siteName: "SilkGuard", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUJbbcH3faLiIhnFA32guEjgga/a-high-quality-macro-photograph-of-healt-1772641384500-ba534078.png", - alt: "Healthy silkworms on mulberry leaves", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SilkGuard - AI Disease Detection for Silkworms", - description: "Early disease prediction platform transforming sericulture management.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUJbbcH3faLiIhnFA32guEjgga/a-high-quality-macro-photograph-of-healt-1772641384500-ba534078.png", - ], - }, -}; + title: "SilkGuard - AI-Powered Silkworm Health Monitoring", description: "Transform sericulture disease management with real-time ML-powered predictions. Detect diseases early and maximize cocoon yield."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}