diff --git a/app/page.tsx b/app/page.tsx
index 3b9c101..18d463b 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -2,6 +2,7 @@ import { Nav } from "@/components/nav";
import { LookingFor } from "@/components/looking-for";
import { Hero } from "@/components/hero";
import { LogoList } from "@/components/logo-list";
+import { MobileApp } from "@/components/mobile-app";
import { CTA } from "@/components/cta";
import { Footer } from "@/components/footer";
import { Testimonial } from "@/components/testimonial";
@@ -15,6 +16,7 @@ export default function Home() {
+
diff --git a/components/mobile-app.tsx b/components/mobile-app.tsx
new file mode 100644
index 0000000..57b8905
--- /dev/null
+++ b/components/mobile-app.tsx
@@ -0,0 +1,102 @@
+"use client";
+
+import { Button } from "@/components/ui/button";
+import { IconBrandApple, IconBrandGooglePlay } from "@tabler/icons-react";
+import { Check } from "lucide-react";
+import Image from "next/image";
+import Link from "next/link";
+import { motion } from "framer-motion";
+import { FADE_UP_ANIMATION_VARIANTS } from "@/lib/framer-variants";
+import { siteConfig } from "@/lib/site-config";
+import dashboard from "@/public/dashboard-2.png";
+
+const highlights = [
+ "Browse and complete bounties from anywhere",
+ "Track submissions and earnings in real time",
+ "Get notified the moment new work drops",
+];
+
+export function MobileApp() {
+ return (
+
+
+
+ Take gibwork with you
+
+
+
+ The gibwork mobile app puts the entire onchain work marketplace in
+ your pocket. Find work, complete tasks, and get paid on the go.
+
+
+
+ {highlights.map((item) => (
+