From c6196daf5455c7c93c39101dd242e100dbb69432 Mon Sep 17 00:00:00 2001 From: ashim-hq Date: Thu, 23 Apr 2026 18:17:47 +0800 Subject: [PATCH] feat: remove Value Props section --- apps/landing/src/app/page.tsx | 2 - apps/landing/src/components/value-props.tsx | 47 --------------------- 2 files changed, 49 deletions(-) delete mode 100644 apps/landing/src/components/value-props.tsx diff --git a/apps/landing/src/app/page.tsx b/apps/landing/src/app/page.tsx index e40887c5..ee61450f 100644 --- a/apps/landing/src/app/page.tsx +++ b/apps/landing/src/app/page.tsx @@ -6,7 +6,6 @@ import { Hero } from "@/components/hero"; import { HowItWorks } from "@/components/how-it-works"; import { Navbar } from "@/components/navbar"; import { OpenSource } from "@/components/open-source"; -import { ValueProps } from "@/components/value-props"; export default function Home() { return ( @@ -14,7 +13,6 @@ export default function Home() {
- diff --git a/apps/landing/src/components/value-props.tsx b/apps/landing/src/components/value-props.tsx deleted file mode 100644 index 07a754f6..00000000 --- a/apps/landing/src/components/value-props.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Brain, Layers, Shield } from "lucide-react"; -import { FadeIn } from "./fade-in"; - -const props = [ - { - number: "01", - title: "100% Air-Gapped", - description: - "No cloud. No uploads. No telemetry. Deploy behind your firewall and process images in complete isolation.", - icon: Shield, - }, - { - number: "02", - title: "AI That Stays Local", - description: - "Background removal, upscaling, OCR, face detection. 14 AI models running entirely on your hardware.", - icon: Brain, - }, - { - number: "03", - title: "50+ Tools, One Platform", - description: - "Resize, crop, compress, watermark, convert, compose. Everything your team needs in a single self-hosted suite.", - icon: Layers, - }, -]; - -export function ValueProps() { - return ( -
-
- {props.map((prop, i) => ( - -
-
- {prop.number} - -
-

{prop.title}

-

{prop.description}

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