Merge version_1 into main #3
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import Link from "next/link";
|
||||
import { Zap, CheckCircle, Search, Brain, Shield, Lock, FileCheck, TrendingUp, Star, HelpCircle, Sparkles } from "lucide-react";
|
||||
|
||||
export default function SentinelPage() {
|
||||
@@ -33,8 +34,8 @@ export default function SentinelPage() {
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Security", id: "security" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" }
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" }
|
||||
]}
|
||||
button={{
|
||||
text: "Start Searching", href: "#contact"
|
||||
@@ -267,24 +268,24 @@ export default function SentinelPage() {
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "How It Works", href: "#how-it-works" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Security", href: "#security" }
|
||||
{ label: "Security", href: "#security" },
|
||||
{ label: "Testimonials", href: "#testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "/careers" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Security", href: "#security" },
|
||||
{ label: "Compliance", href: "/compliance" }
|
||||
{ label: "Compliance", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -292,4 +293,4 @@ export default function SentinelPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user