Update src/app/layout.tsx
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
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 - 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({
|
||||
@@ -15,9 +19,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user