diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c78233e..18f0c74 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); export const metadata: Metadata = { - title: "AEGIS — IA de Prévention Sécurité | Détection EPI en Temps Réel", description: "AEGIS détecte l'absence d'équipements de protection (EPI) en temps réel sur vos chantiers. Solution IA plug & play, 100% anonyme, conforme RGPD et CCT 68. Prévention sans surveillance.", keywords: "IA sécurité chantier, détection EPI, prévention accidents, edge computing, RGPD, sécurité travail, construction", metadataBase: new URL("https://aegis-prevention.com"), - alternates: { - canonical: "https://aegis-prevention.com"}, - openGraph: { - title: "AEGIS — Smart Prevention", description: "Transformez vos caméras existantes en système de prévention sécurité intelligent et conforme.", url: "https://aegis-prevention.com", siteName: "AEGIS", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZY5acDwdXuN29y4eBfxMY8Xiu/a-modern-industrial-factory-or-construct-1772801454836-41023b5e.png", alt: "AEGIS Industrial Safety AI Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AEGIS — IA de Prévention Sécurité", description: "Détection EPI en temps réel. Anonyme. Conforme RGPD. Plug & Play.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZY5acDwdXuN29y4eBfxMY8Xiu/a-modern-industrial-factory-or-construct-1772801454836-41023b5e.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AEGIS - Industrial Safety AI", description: "AEGIS: AI-powered industrial safety detection that protects without surveilling. Real-time hazard detection on existing cameras with edge computing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +