TetraKits UI App Download Hero ← Library

App Download Hero

Mobile app download hero with violet-to-indigo gradient, App Store and Google Play buttons, and phone frame mockup. React + Tailwind section for iOS/Android app marketing, fintech apps, and productivity tools. Fully responsive flex layout.

app download heromobile app landingapp store buttonsreact mobile uigradient hero
Live preview

Dependencies

react
npm install react react-dom
export function AppDownloadHero() {
  return (
    <section className="bg-gradient-to-b from-violet-600 to-indigo-700 px-6 py-20 text-white">
      <div className="mx-auto flex max-w-5xl flex-col items-center gap-10 lg:flex-row">
        <div className="text-center lg:text-left">
          <h1 className="text-4xl font-bold sm:text-5xl">Work anywhere</h1>
          <p className="mt-4 text-violet-100">Download the app for iOS and Android.</p>
          <div className="mt-8 flex flex-wrap justify-center gap-3 lg:justify-start">
            <button className="rounded-xl bg-black/30 px-5 py-3 text-sm font-semibold backdrop-blur">App Store</button>
            <button className="rounded-xl bg-black/30 px-5 py-3 text-sm font-semibold backdrop-blur">Google Play</button>
          </div>
        </div>
        <div className="h-64 w-40 rounded-[2rem] border-4 border-white/30 bg-black/40 shadow-2xl" />
      </div>
    </section>
  );
}