Update src/app/layout.tsx
This commit is contained in:
@@ -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 (
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user