import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { 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, }: { children: React.ReactNode; }) { return (
{children}