- Partners we have collaborated with
+ The Web3 ecosystem trusts gibwork
- Gibwork is powered by a dedicated team of innovators and professionals committed to
- connecting talent with opportunities. Our team combines expertise in technology, design,
- and user experience to build and manage the platform, ensuring it serves the needs of both
- job seekers and employers. We strive to create a seamless experience that empowers users
- to find work or the right talent efficiently.
+ From Solana foundations to leading DeFi protocols, gibwork connects top projects with
+ skilled contributors across design, development, content, and community management.
+ Hundreds of teams have used gibwork to ship faster and pay contributors on-chain.
@@ -65,8 +58,8 @@ export function LogoList() {
-
Dean's List
+
+ Dean's List
@@ -74,7 +67,6 @@ export function LogoList() {
-
diff --git a/components/mobile-app.tsx b/components/mobile-app.tsx
new file mode 100644
index 0000000..cfec01b
--- /dev/null
+++ b/components/mobile-app.tsx
@@ -0,0 +1,154 @@
+"use client";
+
+import { motion } from "framer-motion";
+import { FADE_UP_ANIMATION_VARIANTS } from "@/lib/framer-variants";
+import { Bell, CheckCircle, Smartphone, Wallet } from "lucide-react";
+
+const features = [
+ { icon: Bell, text: "Real-time push notifications for new bounties" },
+ { icon: CheckCircle, text: "Submit work and get approvals on the go" },
+ { icon: Wallet, text: "View your wallet balance and payment history" },
+ { icon: Smartphone, text: "Full access to all task types — bounties, services, GitHub issues" },
+];
+
+const phoneTasks = [
+ { title: "Design protocol logo", tag: "Design", amount: "300 USDC" },
+ { title: "Fix GitHub issue #142", tag: "Dev", amount: "500 USDC" },
+ { title: "Write smart contract docs", tag: "Writing", amount: "150 USDC" },
+];
+
+export function MobileApp() {
+ return (
+
+
+ {/* Text side */}
+
+
+ MOBILE APP
+
+
+ Your Web3 work hub —{" "}
+ in your pocket
+
+
+ The gibwork mobile app lets you browse tasks, submit work, and receive crypto payments
+ from anywhere. Stay on top of opportunities the moment they go live.
+
+
+
+ {features.map((f) => {
+ const Icon = f.icon;
+ return (
+
+
+
+
+ {f.text}
+
+ );
+ })}
+
+
+
+
+ 🍎
+
+
Download on the
+
App Store
+
+
+
+ ▶
+
+
Get it on
+
Google Play
+
+
+
+
+
+ {/* Phone mockup side */}
+
+
+
+ {/* Phone header */}
+
+ gibwork
+
+ 3 new
+
+
+
+ {/* Task cards */}
+
+ {phoneTasks.map((task) => (
+
+
{task.title}
+
+
+ {task.tag}
+
+ {task.amount}
+
+
+ ))}
+
+
+ {/* CTA bar */}
+
+
+ Start earning crypto →
+
+
+
+
+
+
+
+ );
+}
diff --git a/components/nav.tsx b/components/nav.tsx
index fe8bcef..b41e9df 100644
--- a/components/nav.tsx
+++ b/components/nav.tsx
@@ -19,7 +19,7 @@ export function Nav() {
return (
<>
-