From eb54c19222ff1e0471ef54b33214ebe996849b60 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:31:33 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b14c656..e32ecba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,16 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./globals.css"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Sentinel OSINT Platform", description: "Enter any identifier and instantly surface publicly available intelligence. Privacy-first, results-fast."}; + title: "Sentinel - OSINT Intelligence Platform", description: "Enter any identifier and instantly surface publicly available intelligence with AI-powered analysis, privacy-first design, and enterprise-grade security.", openGraph: { + title: "Sentinel - OSINT Intelligence Platform", description: "Enter any identifier and instantly surface publicly available intelligence with AI-powered analysis, privacy-first design, and enterprise-grade security.", type: "website"}, +}; export default function RootLayout({ children, @@ -11,7 +19,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}