6 Commits

Author SHA1 Message Date
268133f474 Update src/app/page.tsx 2026-03-03 19:43:34 +00:00
f59f294f50 Update src/app/page.tsx 2026-03-03 19:34:26 +00:00
5692e794ba Update src/app/page.tsx 2026-03-03 19:32:17 +00:00
5d1510aad1 Update src/app/layout.tsx 2026-03-03 19:32:16 +00:00
a791889da5 Update src/app/page.tsx 2026-03-03 19:26:52 +00:00
f1f6d86db5 Update src/app/layout.tsx 2026-03-03 19:26:51 +00:00
3 changed files with 29 additions and 31 deletions

View File

@@ -1,13 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
import "./styles/globals.css";
export const metadata: Metadata = {
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."};
title: "Sentinel OSINT Platform", description: "Enter any identifier and instantly surface publicly available intelligence. Privacy-first, results-fast."
};
export default function RootLayout({
children,
@@ -16,7 +12,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -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,10 +34,11 @@ export default function SentinelPage() {
{ name: "Features", id: "features" },
{ name: "How It Works", id: "how-it-works" },
{ name: "Security", id: "security" },
{ name: "Testimonials", id: "testimonials" }
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
]}
button={{
text: "Start Free Trial", href: "#contact"
text: "Start Searching", href: "#contact"
}}
/>
</div>
@@ -272,18 +274,18 @@ export default function SentinelPage() {
},
{
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: "#" }
]
}
]}
@@ -291,4 +293,4 @@ export default function SentinelPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --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;;
--secondary-cta: #efe7dd;;
--accent: #94877c;;
--background-accent: #afa094;; */
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000612e6;;
--primary-cta: #15479c;;
--background: #f6f0e9;;
--card: #efe7dd;;
--foreground: #2b180a;;
--primary-cta: #2b180a;;
--primary-cta-text: #f6f0e9;;
--secondary-cta: #f9f9f9;;
--secondary-cta: #efe7dd;;
--secondary-cta-text: #2b180a;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--accent: #94877c;;
--background-accent: #afa094;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);