Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 15:24:15 +00:00
2 changed files with 10 additions and 53 deletions

View File

@@ -1,62 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "GeoSafe AI - Boundary Encroachment & Utility Safety Detection", description: "AI-powered boundary encroachment and utility safety tracker using satellite/drone imagery, GPS, and geofencing. Detect violations, protect infrastructure, and optimize land utilization.", keywords: "geospatial, boundary detection, encroachment, utility safety, satellite imagery, drone detection, AI, GIS, land survey", metadataBase: new URL("https://geosafe-ai.example.com"),
alternates: {
canonical: "https://geosafe-ai.example.com"},
openGraph: {
title: "GeoSafe AI - Intelligent Boundary Protection", description: "Advanced geospatial analysis platform for detecting land encroachments and utility safety violations using AI and satellite/drone imagery.", url: "https://geosafe-ai.example.com", siteName: "GeoSafe AI", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX0zzeRDziMOWhwJBmduoeVhSo/a-stunning-satellite-view-of-agricultura-1772723962610-e49375bc.png", alt: "A stunning satellite view of agricultural land with clear boundary demarcations, showing green field"},
],
},
twitter: {
card: "summary_large_image", title: "GeoSafe AI - Boundary Encroachment Detection", description: "Detect unauthorized encroachments and utility violations with AI-powered geospatial analysis.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX0zzeRDziMOWhwJBmduoeVhSo/a-stunning-satellite-view-of-agricultura-1772723962610-e49375bc.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "GeoSafe AI - Boundary Encroachment & Utility Safety Tracker", description: "Detect land encroachments and utility safety violations using advanced AI, drone imagery, satellite data, and geospatial analytics."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1424,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -159,16 +159,16 @@ export default function LandingPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1", value: "Step 1", title: "Load Official Boundary", items: ["GeoJSON format", "Cadastral data", "Shapefile support"]
id: "1", value: "1/4", title: "Load Official Boundary", items: ["GeoJSON format", "Cadastral data", "Shapefile support"]
},
{
id: "2", value: "Step 2", title: "Process Uploaded Imagery", items: ["GDAL conversion", "Georeference alignment", "Quality validation"]
id: "2", value: "2/4", title: "Process Uploaded Imagery", items: ["GDAL conversion", "Georeference alignment", "Quality validation"]
},
{
id: "3", value: "Step 3", title: "Run YOLOv8 Detection", items: ["Building detection", "Vehicle detection", "Structure identification"]
id: "3", value: "3/4", title: "Run YOLOv8 Detection", items: ["Building detection", "Vehicle detection", "Structure identification"]
},
{
id: "4", value: "Step 4", title: "Overlay & Calculate", items: ["Map integration", "Intersection analysis", "Area quantification"]
id: "4", value: "4/4", title: "Overlay & Calculate", items: ["Map integration", "Intersection analysis", "Area quantification"]
}
]}
animationType="slide-up"