From 9f68c1a73ee9f11fd6a54ce8d4af1f9a04cfd0a5 Mon Sep 17 00:00:00 2001 From: ashim-hq Date: Thu, 23 Apr 2026 21:21:19 +0800 Subject: [PATCH] feat: remove Trusted across industries section --- apps/landing/src/app/page.tsx | 3 +- apps/landing/src/components/use-cases.tsx | 71 ----------------------- 2 files changed, 1 insertion(+), 73 deletions(-) delete mode 100644 apps/landing/src/components/use-cases.tsx diff --git a/apps/landing/src/app/page.tsx b/apps/landing/src/app/page.tsx index 71163595..19acbd3b 100644 --- a/apps/landing/src/app/page.tsx +++ b/apps/landing/src/app/page.tsx @@ -7,7 +7,7 @@ import { HowItWorks } from "@/components/how-it-works"; import { Navbar } from "@/components/navbar"; import { OpenSource } from "@/components/open-source"; import { ThreeWays } from "@/components/three-ways"; -import { UseCases } from "@/components/use-cases"; + import { WhyChoose } from "@/components/why-choose"; export default function Home() { @@ -20,7 +20,6 @@ export default function Home() { - diff --git a/apps/landing/src/components/use-cases.tsx b/apps/landing/src/components/use-cases.tsx deleted file mode 100644 index fff61940..00000000 --- a/apps/landing/src/components/use-cases.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import { Building2, Factory, GraduationCap, Heart, Scale, Shield } from "lucide-react"; - -import { FadeIn } from "./fade-in"; - -const industries = [ - { - title: "Healthcare", - description: - "Process patient photos, medical scans, and clinical images without sending data to third-party servers. HIPAA compliant by architecture.", - icon: Heart, - }, - { - title: "Legal", - description: - "Handle sensitive document scans, evidence photos, and case files entirely on-premise. Full audit trail included.", - icon: Scale, - }, - { - title: "Financial Services", - description: - "Process check images, ID verification photos, and financial documents behind your firewall.", - icon: Building2, - }, - { - title: "Government & Defense", - description: - "Air-gapped deployment for classified environments. No internet connection required.", - icon: Shield, - }, - { - title: "Education", - description: - "Process student records, research images, and campus photos with zero cloud dependency.", - icon: GraduationCap, - }, - { - title: "Manufacturing", - description: - "Quality control imaging, product photography, and documentation processing on your factory network.", - icon: Factory, - }, -]; - -export function UseCases() { - return ( -
-
- -

- Trusted across industries -

-

- Organizations choose SnapOtter when data privacy is non-negotiable. -

-
- -
- {industries.map((industry, i) => ( - -
- -

{industry.title}

-

{industry.description}

-
-
- ))} -
-
-
- ); -}