From 1be25a6aef4fbae1eaca50e72b52b998eeca2d44 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:24:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++----------------------------------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index baf3af2..a494e8a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}