Update src/app/layout.tsx

This commit is contained in:
2026-03-03 19:17:39 +00:00
parent c049b2a995
commit 167668f530

View File

@@ -1,59 +1,22 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Sentinel | AI-Powered OSINT Search Platform", description: "Fast, elegant OSINT search platform. Enter any identifier—name, email, phone—and instantly surface publicly available intelligence. Privacy-first, results-fast.", keywords: "OSINT, intelligence, search, security, investigators, researchers, privacy-first", metadataBase: new URL("https://sentinel-osint.com"),
alternates: {
canonical: "https://sentinel-osint.com"
},
openGraph: {
title: "Sentinel | AI-Powered OSINT Search", description: "Search instantly. Discover intelligence. Understand threats. Privacy-first OSINT platform for security professionals.", url: "https://sentinel-osint.com", siteName: "Sentinel", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWoEY4Cwr3Fs579tJwi7Tz8Zw/a-minimalist-osint-search-interface-dash-1772556113102-e1045b43.png", alt: "Sentinel OSINT platform interface"
}
]
},
twitter: {
card: "summary_large_image", title: "Sentinel | AI-Powered OSINT Search", description: "Privacy-first intelligence gathering for security professionals.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWoEY4Cwr3Fs579tJwi7Tz8Zw/a-minimalist-osint-search-interface-dash-1772556113102-e1045b43.png"]
},
robots: {
index: true,
follow: true
}
};
title: "Sentinel - OSINT Search Platform", description: "Enter any identifier—name, email, phone—and our AI instantly surfaces publicly available intelligence. Privacy-first, results-fast."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}