Update src/app/page.tsx

This commit is contained in:
2026-03-03 20:17:17 +00:00
parent 868478afa0
commit e7bc47483d

View File

@@ -10,22 +10,21 @@ 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 (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
borderRadius="rounded"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
sizing="mediumLargeSizeMediumTitles"
background="none"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
@@ -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,16 @@ export default function SentinelPage() {
},
{
title: "Company", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#contact" },
{ label: "Careers", href: "#contact" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Security", href: "#security" },
{ label: "Compliance", href: "#" }
{ label: "Privacy Policy", href: "#contact" },
{ label: "Terms of Service", href: "#contact" },
{ label: "Compliance", href: "#contact" }
]
}
]}
@@ -293,4 +289,4 @@ export default function SentinelPage() {
</div>
</ThemeProvider>
);
}
}