From ecc78258c6d861d0ddbddcf9959b6c3e0ccb7ed8 Mon Sep 17 00:00:00 2001 From: maxw06 <58760380+maxw06@users.noreply.github.com> Date: Wed, 8 Jul 2026 23:00:49 +0800 Subject: [PATCH] Refresh landing page product flow --- app/layout.tsx | 4 +- app/page.tsx | 4 + components/cta.tsx | 7 +- components/faq.tsx | 20 +++-- components/footer.tsx | 2 +- components/hero.tsx | 26 ++++--- components/logo-list.tsx | 40 +++++++--- components/looking-for.tsx | 42 +++++----- components/mobile-app.tsx | 149 ++++++++++++++++++++++++++++++++++++ components/nav.tsx | 4 +- components/product-flow.tsx | 94 +++++++++++++++++++++++ components/testimonial.tsx | 4 +- lib/site-config.ts | 4 +- 13 files changed, 337 insertions(+), 63 deletions(-) create mode 100644 components/mobile-app.tsx create mode 100644 components/product-flow.tsx diff --git a/app/layout.tsx b/app/layout.tsx index be9a6b9..be268e8 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -11,9 +11,9 @@ export async function generateMetadata( parent: ResolvingMetadata ): Promise { return { - title: "Gibwork | Find Talent, Find Work", + title: "Gibwork | Onchain Work Marketplace", description: - "Gibwork connects skilled professionals with freelance work opportunities, offering seamless integration with all Solana tokens for secure and efficient transactions.", + "Gibwork connects teams and builders through paid tasks, open-source bounties, services, and wallet-based payouts on Solana.", openGraph: { images: [`https://cdn.gib.work/metadata/default.png`], }, diff --git a/app/page.tsx b/app/page.tsx index 3b9c101..db3f487 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,8 @@ import { CTA } from "@/components/cta"; import { Footer } from "@/components/footer"; import { Testimonial } from "@/components/testimonial"; import { Faq } from "@/components/faq"; +import { ProductFlow } from "@/components/product-flow"; +import { MobileApp } from "@/components/mobile-app"; export default function Home() { return ( @@ -13,6 +15,8 @@ export default function Home() {