Update src/app/page.tsx

This commit is contained in:
2026-03-03 19:43:34 +00:00
parent f59f294f50
commit 268133f474

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,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"
@@ -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: "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: "#" }
]
}
]}
@@ -292,4 +293,4 @@ export default function SentinelPage() {
</div>
</ThemeProvider>
);
}
}