Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-06 15:31:40 +00:00
2 changed files with 9 additions and 51 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
{ text: "Comment ça marche", href: "how-it-works" },
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZY5acDwdXuN29y4eBfxMY8Xiu/a-modern-industrial-factory-or-construct-1772801454836-41023b5e.png?_wi=1"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZY5acDwdXuN29y4eBfxMY8Xiu/uploaded-1772811050108-9a2u9zqy.png"
imageAlt="Industrial site with AI detection overlay"
background={{ variant: "canvas-reveal" }}
/>
@@ -240,4 +240,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}