Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1426,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Revolutionize Your Silk Production?"
|
||||
description="Join thousands of sericulture farmers who are already transforming their disease management practices with intelligent, data-driven insights. Our team is ready to help you integrate SilkGuard into your farming operations."
|
||||
description="Don't miss the early season monitoring window—the critical period for disease detection that determines your entire crop's health and yield. Limited demo slots available this month. Join thousands of sericulture farmers already transforming their disease management practices with intelligent, data-driven insights. Our team is ready to help you integrate SilkGuard into your farming operations before peak season arrives."
|
||||
buttons={[
|
||||
{ text: "Schedule Demo", href: "/contact" },
|
||||
{ text: "Start Free Trial", href: "/dashboard" },
|
||||
@@ -281,4 +281,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user