Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fd577ec86 | |||
| dfe23a3698 | |||
| fb45ab897d | |||
| c4125aafe2 | |||
| b4322a6f8a | |||
| 818dc2f54e | |||
| e7bc47483d | |||
| 868478afa0 | |||
| c79f8cfd79 | |||
| dbb0ea8ac6 | |||
| 95ae77d21c | |||
| 085d8020de | |||
| e91a4314d6 | |||
| 6e4715b1f8 | |||
| 72b3448cc3 | |||
| df3c3cfbeb | |||
| c00e315190 | |||
| a658540c58 | |||
| eb54c19222 | |||
| 5e03b22d0a | |||
| 4c300874eb | |||
| 627bb01d57 | |||
| b0c1160c6a | |||
| ea7c45e66f | |||
| 573b91371e | |||
| f70274c8fb | |||
| e982f54018 | |||
| c43845c030 | |||
| 91301c0068 | |||
| ee0720598f | |||
| 06e94fd3a9 | |||
| 1759d1117c | |||
| 167668f530 | |||
| c049b2a995 | |||
| 6016efedff |
@@ -1,59 +1,22 @@
|
||||
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";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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 - Powerful Intelligence Search Platform", description: "Advanced OSINT search platform for security professionals. 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 className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -33,11 +33,10 @@ 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" }
|
||||
]}
|
||||
button={{
|
||||
text: "Start Searching", href: "#contact"
|
||||
text: "Start Free Trial", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -267,24 +266,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: "About", href: "#about" },
|
||||
{ label: "Blog", href: "#blog" },
|
||||
{ label: "Careers", href: "#careers" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
{ label: "Privacy Policy", href: "#privacy" },
|
||||
{ label: "Terms of Service", href: "#terms" },
|
||||
{ label: "Security", href: "#security" },
|
||||
{ label: "Compliance", href: "/compliance" }
|
||||
{ label: "Compliance", href: "#compliance" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f6f0e9;;
|
||||
--card: #efe7dd;;
|
||||
--foreground: #2b180a;;
|
||||
--primary-cta: #2b180a;;
|
||||
--secondary-cta: #efe7dd;;
|
||||
--accent: #94877c;;
|
||||
--background-accent: #afa094;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
|
||||
--background: #f6f0e9;;
|
||||
--card: #efe7dd;;
|
||||
--foreground: #2b180a;;
|
||||
--primary-cta: #2b180a;;
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--primary-cta-text: #f6f0e9;;
|
||||
--secondary-cta: #efe7dd;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta-text: #2b180a;;
|
||||
--accent: #94877c;;
|
||||
--background-accent: #afa094;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user