35 Commits

Author SHA1 Message Date
4fd577ec86 Merge version_2 into main
Merge version_2 into main
2026-03-03 21:01:43 +00:00
dfe23a3698 Update src/app/styles/variables.css 2026-03-03 21:01:38 +00:00
fb45ab897d Update src/app/page.tsx 2026-03-03 21:01:37 +00:00
c4125aafe2 Update src/app/layout.tsx 2026-03-03 21:01:34 +00:00
b4322a6f8a Update src/app/page.tsx 2026-03-03 20:30:19 +00:00
818dc2f54e Update src/app/page.tsx 2026-03-03 20:26:40 +00:00
e7bc47483d Update src/app/page.tsx 2026-03-03 20:17:17 +00:00
868478afa0 Update src/app/page.tsx 2026-03-03 20:13:23 +00:00
c79f8cfd79 Update src/app/page.tsx 2026-03-03 20:02:08 +00:00
dbb0ea8ac6 Update src/app/page.tsx 2026-03-03 19:57:42 +00:00
95ae77d21c Merge version_2 into main
Merge version_2 into main
2026-03-03 19:47:00 +00:00
085d8020de Update src/app/styles/variables.css 2026-03-03 19:46:56 +00:00
e91a4314d6 Update src/app/page.tsx 2026-03-03 19:46:55 +00:00
6e4715b1f8 Update src/app/layout.tsx 2026-03-03 19:46:54 +00:00
72b3448cc3 Update src/app/page.tsx 2026-03-03 19:40:52 +00:00
df3c3cfbeb Update src/app/page.tsx 2026-03-03 19:36:00 +00:00
c00e315190 Merge version_2 into main
Merge version_2 into main
2026-03-03 19:32:56 +00:00
a658540c58 Update src/app/page.tsx 2026-03-03 19:31:34 +00:00
eb54c19222 Update src/app/layout.tsx 2026-03-03 19:31:33 +00:00
5e03b22d0a Update src/app/page.tsx 2026-03-03 19:29:59 +00:00
4c300874eb Update src/app/page.tsx 2026-03-03 19:28:26 +00:00
627bb01d57 Update src/app/layout.tsx 2026-03-03 19:28:26 +00:00
b0c1160c6a Update src/app/page.tsx 2026-03-03 19:26:25 +00:00
ea7c45e66f Update src/app/layout.tsx 2026-03-03 19:26:25 +00:00
573b91371e Update src/app/page.tsx 2026-03-03 19:24:51 +00:00
f70274c8fb Update src/app/layout.tsx 2026-03-03 19:24:50 +00:00
e982f54018 Switch to version 1: modified src/app/page.tsx 2026-03-03 19:24:05 +00:00
c43845c030 Switch to version 1: modified src/app/layout.tsx 2026-03-03 19:24:05 +00:00
91301c0068 Merge version_2 into main
Merge version_2 into main
2026-03-03 19:21:47 +00:00
ee0720598f Update src/app/layout.tsx 2026-03-03 19:21:43 +00:00
06e94fd3a9 Merge version_2 into main
Merge version_2 into main
2026-03-03 19:17:44 +00:00
1759d1117c Update src/app/page.tsx 2026-03-03 19:17:40 +00:00
167668f530 Update src/app/layout.tsx 2026-03-03 19:17:39 +00:00
c049b2a995 Merge version_1 into main
Merge version_1 into main
2026-03-03 16:50:37 +00:00
6016efedff Merge version_1 into main
Merge version_1 into main
2026-03-03 16:42:54 +00:00
3 changed files with 31 additions and 29 deletions

View File

@@ -1,9 +1,13 @@
import type { Metadata } from "next";
import "./styles/globals.css";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = 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 - 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,
@@ -12,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -10,7 +10,6 @@ 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() {
@@ -34,11 +33,10 @@ 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: "FAQ", id: "faq" }
{ name: "Testimonials", id: "testimonials" }
]}
button={{
text: "Start Searching", href: "#contact"
text: "Start Free Trial", href: "#contact"
}}
/>
</div>
@@ -274,18 +272,18 @@ export default function SentinelPage() {
},
{
title: "Company", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "About", href: "#about" },
{ label: "Blog", href: "#blog" },
{ label: "Careers", href: "#careers" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Privacy Policy", href: "#privacy" },
{ label: "Terms of Service", href: "#terms" },
{ label: "Security", href: "#security" },
{ label: "Compliance", href: "#" }
{ label: "Compliance", href: "#compliance" }
]
}
]}
@@ -293,4 +291,4 @@ export default function SentinelPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -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);