Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec6fdaeb44 | |||
| 664caeaa96 | |||
| df00f15c61 | |||
| 27492198dc | |||
| d79f98f3ae | |||
| 41c39a81af | |||
| de4ef81c4b | |||
| c05dbfa8f8 | |||
| 7664b24c8d | |||
| 1020736395 |
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
@@ -41,16 +41,13 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlayTestimonial
|
<HeroBillboardScroll
|
||||||
title="Automate Your L1 Triage Process with Precision"
|
title="Automate Your L1 Triage Process with Precision"
|
||||||
description="Reduce false positives by 90% and accelerate your sanction screening workflow with our enterprise-grade automation platform."
|
description="Reduce false positives by 90% and accelerate your sanction screening workflow with our enterprise-grade automation platform."
|
||||||
tag="Next-Gen Compliance Automation"
|
tag="Next-Gen Compliance Automation"
|
||||||
tagIcon={ShieldCheck}
|
tagIcon={ShieldCheck}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/closeup-african-american-entrepreneur-analyzing-company-profit_482257-20207.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/closeup-african-american-entrepreneur-analyzing-company-profit_482257-20207.jpg"
|
||||||
testimonials={[
|
background={{ variant: "sparkles-gradient" }}
|
||||||
{ name: "Sarah Jenkins", handle: "@compliance_lead", testimonial: "The platform cut our L1 review time in half.", rating: 5 },
|
|
||||||
{ name: "Mark Peterson", handle: "@ops_manager", testimonial: "Incredible accuracy, we can focus on high-risk cases.", rating: 5 }
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -60,7 +57,7 @@ export default function LandingPage() {
|
|||||||
tag="Our Mission"
|
tag="Our Mission"
|
||||||
title="Eliminating Friction in Compliance"
|
title="Eliminating Friction in Compliance"
|
||||||
description="We understand that L1 triage is the most time-consuming part of sanction screening. Our AI platform delivers unmatched accuracy and speed."
|
description="We understand that L1 triage is the most time-consuming part of sanction screening. Our AI platform delivers unmatched accuracy and speed."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/business-team-three-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-copy-space-business-meeting-concept_74855-11552.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/business-team-three-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-copy-space-business-meeting-concept_74855-11552.jpg?_wi=1"
|
||||||
tagIcon={Target}
|
tagIcon={Target}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -128,21 +125,28 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
title="Ready to transform your L1 triage workflow?"
|
title="Transform Your Compliance Today"
|
||||||
description="Get started today and streamline your compliance team capacity."
|
description="Get in touch to learn how our automation platform can scale your team's capacity."
|
||||||
tag="Get Started"
|
inputs={[
|
||||||
useInvertedBackground={false}
|
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||||
background={{ variant: "sparkles-gradient" }}
|
{ name: "email", type: "email", placeholder: "Company Email" }
|
||||||
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Tell us about your requirements" }}
|
||||||
|
buttonText="Schedule Demo"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
mediaPosition="right"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/businessman-using-tablet-analysis-business-data-with-finance-graph-chart-meeting-office_1150-17070.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterMedia
|
||||||
logoText="SanctionFlow"
|
logoText="SanctionFlow"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/business-team-three-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-copy-space-business-meeting-concept_74855-11552.jpg?_wi=2"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Product", items: [{ label: "Features", href: "#features" }] },
|
{ title: "Resources", items: [{ label: "Security Whitepaper", href: "#" }, { label: "API Documentation", href: "#" }] },
|
||||||
{ title: "Company", items: [{ label: "About", href: "#about" }] }
|
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "#contact" }] }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user