From 818dc2f54e97b9da55fd995922271d67060da665 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:26:40 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9df3925..1174577 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,21 +10,22 @@ 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() { return ( @@ -272,16 +274,18 @@ export default function SentinelPage() { }, { title: "Company", items: [ - { label: "Blog", href: "#contact" }, - { label: "Careers", href: "#contact" }, + { label: "FAQ", href: "#faq" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, { label: "Contact", href: "#contact" } ] }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#contact" }, - { label: "Terms of Service", href: "#contact" }, - { label: "Compliance", href: "#contact" } + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Security", href: "#security" }, + { label: "Compliance", href: "#" } ] } ]} @@ -289,4 +293,4 @@ export default function SentinelPage() { ); -} +} \ No newline at end of file