From c43845c030aa67bb322bba7d9da9ec32ccc17ab1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:24:05 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bbd028a..cf7cf8d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,23 +1,59 @@ 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 inter = Inter({ subsets: ["latin"] }); +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"], +}); export const metadata: Metadata = { - title: "Sentinel - OSINT Search Platform", description: "Enter any identifier—name, email, phone—and our AI instantly surfaces publicly available intelligence. Privacy-first, results-fast." + 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 + } }; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - - {children} - + + + + + {children} +