feat: add mobile app download section to landing page#111
Open
UveysUygul wants to merge 1 commit into
Open
Conversation
The landing page did not surface the gibwork mobile app, which is one of the current product's key features. This adds a responsive "Take gibwork with you" section between the testimonial and final CTA. - New `MobileApp` section component, matching the existing design system (framer-motion fade-up, staggered children, max-w-7xl, border-y, shadcn Button + next/link, @tabler brand icons already in deps). - Two-column on desktop, stacked + centered on mobile; left = headline, benefit bullets, and Google Play / iOS store CTAs; right = device mockup reusing the existing dashboard image. - Store URLs added to `site-config.ts` (`androidUrl`, `iosUrl`) so the team controls them from one place. `androidUrl` points to the live Play Store listing (com.gibwork.app); `iosUrl` is a placeholder for the team's link. Verified with `next build` — compiles successfully, types valid. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
@UveysUygul is attempting to deploy a commit to the gibwork Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What & why
The landing page does not currently surface the gibwork mobile app, even though it's one of the live product's key features (Android is on Google Play as
com.gibwork.app). The task brief calls out that the page should "more accurately reflect the current product, including mobile app." This PR closes that gap.It adds a responsive "Take gibwork with you" section between the testimonial and the final CTA.
Changes
components/mobile-app.tsx(new) — section component built to match the existing design system:framer-motionfade-up with staggered children (sameFADE_UP_ANIMATION_VARIANTSpattern as Hero/CTA/LookingFor)max-w-7xl mx-auto,border-y,py-24 sm:py-32spacing consistent with the CTA sectionButton+next/link,@tabler/icons-reactbrand icons (already a dependency)lg, stacked + centered on mobiledashboard-2.pngasset (no new binary added)lib/site-config.ts— addedandroidUrl(live Play Store listing) andiosUrlso store links live in one place.iosUrlis a placeholder — swap in the real App Store URL when ready.app/page.tsx— render<MobileApp />between<Testimonial />and<CTA />.Verification
next buildcompiles successfully, types valid, all static pages generated.Notes for the team
iosUrlinlib/site-config.tsonce the App Store link is final.