diff --git a/src/app/page.tsx b/src/app/page.tsx index 10cf447..59be4b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBase from "@/components/sections/footer/FooterBase"; import { Zap, CheckCircle, Search, Brain, Shield, Lock, FileCheck, TrendingUp, Star, HelpCircle, Sparkles } from "lucide-react"; +import Link from "next/link"; export default function SentinelPage() { return ( @@ -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" @@ -113,7 +114,7 @@ export default function SentinelPage() { title: "Credible Results", description: "View intelligence with source attribution, confidence scores, and transparency indicators for every finding.", icon: Shield }, { - title: "Actionable Intelligence", description: "Use verified, contextualized intelligence for investigations, research, or security assessments with confidence." + title: "Actionable Intelligence", description: "Use verified, contextualized intelligence for investigations, research, or security assessments with confidence.", icon: TrendingUp } ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWoEY4Cwr3Fs579tJwi7Tz8Zw/minimalist-data-visualization-showing-ac-1772556114178-e2b0501f.png" @@ -164,7 +165,7 @@ export default function SentinelPage() { title: "Audit Trails", description: "Complete transparency with detailed audit logs tracking all data access and modifications.", icon: FileCheck }, { - title: "Legal & Ethical", description: "Only open-source intelligence from legal, public sources. No dark web data or illicit sources." + title: "Legal & Ethical", description: "Only open-source intelligence from legal, public sources. No dark web data or illicit sources.", icon: CheckCircle } ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWoEY4Cwr3Fs579tJwi7Tz8Zw/abstract-representation-of-encryption-an-1772556114670-4c002015.png" @@ -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: "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" } ] } ]}