diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf7cf8d..f3b7d36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,18 @@ 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"], -}); +import "./styles/globals.css"; 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 Platform", description: "Enter any identifier and instantly surface publicly available intelligence. Privacy-first, results-fast." }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}