Web InnoventixFreeCode

Animated marquee highlights band

Original · free

A bold feature band with an animated gradient background, floating blurred orbs, blur-in staggered headline, two opposing marquee pill rows and shimmering stat cards.

byWeb InnoventixReact + Tailwind
animated marquee sectiongradient feature bandframer motion marqueescrolling pills marqueeanimated gradient backgroundfeature highlights banner
Open

Copy prompt gives Claude Code, Cursor or v0 a ready-to-paste prompt that recreates this exact component.

npx shadcn@latest add https://webinnoventix.com/r/afeature-marquee-highlights.json
afeature-marquee-highlights.tsx
"use client";

import { motion } from "motion/react";

const headline = ["Momentum", "for", "teams", "that", "move", "fast"];

const wordsReveal = {
  hidden: {},
  show: { transition: { staggerChildren: 0.07, delayChildren: 0.1 } },
};

const wordReveal = {
  hidden: { opacity: 0, y: 24, filter: "blur(6px)" },
  show: { opacity: 1, y: 0, filter: "blur(0px)", transition: { type: "spring", stiffness: 140, damping: 18 } },
};

const rowA = ["Automated workflows", "Real-time sync", "Edge delivery", "Version history", "One-click rollback", "Smart alerts"];
const rowB = ["Role-based access", "Audit logging", "Custom dashboards", "Webhooks", "Bulk actions", "Saved views"];

const stats = [
  { value: "2.4M", label: "Actions automated weekly" },
  { value: "180ms", label: "Median response time" },
  { value: "99.99%", label: "Rolling uptime" },
];

function Pill({ text }: { text: string }) {
  return (
    <span className="flex items-center gap-2 whitespace-nowrap rounded-full border border-white/20 bg-white/10 px-4 py-2 text-sm font-medium text-white backdrop-blur">
      <svg viewBox="0 0 20 20" fill="currentColor" className="h-4 w-4 text-white/70" aria-hidden="true">
        <path fillRule="evenodd" d="M16.7 5.3a1 1 0 0 1 0 1.4l-7.5 7.5a1 1 0 0 1-1.4 0L3.3 10.7a1 1 0 1 1 1.4-1.4l3.1 3.1 6.8-6.8a1 1 0 0 1 1.4 0Z" clipRule="evenodd" />
      </svg>
      {text}
    </span>
  );
}

export default function MarqueeHighlights() {
  return (
    <section className="relative w-full bg-slate-50 px-5 py-24 dark:bg-slate-950 sm:px-8">
      <style>{`
        @keyframes mqh-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        @keyframes mqh-marquee { to { transform: translateX(-50%); } }
        @keyframes mqh-float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-24px); } }
        @keyframes mqh-shimmer { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }
        .mqh-gradient { background: linear-gradient(120deg, #4f46e5, #7c3aed, #db2777, #6366f1); background-size: 300% 300%; animation: mqh-gradient 15s ease infinite; }
        .mqh-marquee { animation: mqh-marquee 26s linear infinite; }
        .mqh-marquee-rev { animation: mqh-marquee 30s linear infinite reverse; }
        .mqh-float { animation: mqh-float 9s ease-in-out infinite; }
        .mqh-shimmer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%); transform: translateX(-120%); animation: mqh-shimmer 3.5s ease-in-out infinite; }
        @media (prefers-reduced-motion: reduce) {
          .mqh-gradient, .mqh-marquee, .mqh-marquee-rev, .mqh-float { animation: none !important; }
          .mqh-shimmer::after { animation: none !important; opacity: 0; }
        }
      `}</style>

      <div className="relative mx-auto max-w-6xl overflow-hidden rounded-[2rem] shadow-2xl">
        <div className="mqh-gradient absolute inset-0" aria-hidden="true" />
        <div className="absolute inset-0 bg-slate-950/25" aria-hidden="true" />
        <div className="mqh-float pointer-events-none absolute -left-16 top-10 h-64 w-64 rounded-full bg-white/20 blur-3xl" aria-hidden="true" />
        <div className="mqh-float pointer-events-none absolute -right-10 bottom-0 h-72 w-72 rounded-full bg-fuchsia-300/25 blur-3xl" style={{ animationDelay: "1.5s" }} aria-hidden="true" />

        <div className="relative px-6 py-16 sm:px-12 sm:py-20">
          <div className="mx-auto max-w-3xl text-center">
            <motion.span
              initial={{ opacity: 0, y: 12 }}
              whileInView={{ opacity: 1, y: 0 }}
              viewport={{ once: true }}
              transition={{ duration: 0.5 }}
              className="inline-flex items-center gap-2 rounded-full border border-white/25 bg-white/10 px-3 py-1 text-xs font-medium text-white backdrop-blur"
            >
              <span className="h-1.5 w-1.5 rounded-full bg-white" />
              Built for velocity
            </motion.span>

            <motion.h2
              variants={wordsReveal}
              initial="hidden"
              whileInView="show"
              viewport={{ once: true, amount: 0.5 }}
              className="mt-6 flex flex-wrap justify-center gap-x-3 text-balance text-4xl font-semibold tracking-tight text-white sm:text-6xl"
            >
              {headline.map((w, i) => (
                <motion.span key={i} variants={wordReveal} className="inline-block">
                  {w}
                </motion.span>
              ))}
            </motion.h2>

            <motion.p
              initial={{ opacity: 0, y: 16 }}
              whileInView={{ opacity: 1, y: 0 }}
              viewport={{ once: true }}
              transition={{ duration: 0.6, delay: 0.3 }}
              className="mx-auto mt-5 max-w-xl text-pretty text-base leading-relaxed text-white/80"
            >
              Everything you need to organise work and keep it moving, wrapped in one calm interface your whole team will actually enjoy using.
            </motion.p>

            <motion.div
              initial={{ opacity: 0, y: 16 }}
              whileInView={{ opacity: 1, y: 0 }}
              viewport={{ once: true }}
              transition={{ duration: 0.6, delay: 0.4 }}
              className="mt-8 flex flex-wrap items-center justify-center gap-3"
            >
              <a href="#" className="rounded-full bg-white px-6 py-3 text-sm font-semibold text-slate-900 shadow-lg transition hover:scale-105 hover:bg-white/90 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white">
                Start free
              </a>
              <a href="#" className="rounded-full border border-white/40 bg-white/5 px-6 py-3 text-sm font-semibold text-white backdrop-blur transition hover:bg-white/15 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white">
                Watch the tour
              </a>
            </motion.div>
          </div>

          {/* Marquee rows */}
          <div className="relative mt-14 space-y-3 [mask-image:linear-gradient(90deg,transparent,#000_8%,#000_92%,transparent)]">
            <div className="overflow-hidden">
              <div className="mqh-marquee flex w-max gap-3">
                {[...rowA, ...rowA].map((t, i) => <Pill key={i} text={t} />)}
              </div>
            </div>
            <div className="overflow-hidden">
              <div className="mqh-marquee-rev flex w-max gap-3">
                {[...rowB, ...rowB].map((t, i) => <Pill key={i} text={t} />)}
              </div>
            </div>
          </div>

          {/* Stats */}
          <motion.dl
            variants={wordsReveal}
            initial="hidden"
            whileInView="show"
            viewport={{ once: true, amount: 0.4 }}
            className="mt-14 grid grid-cols-1 gap-4 sm:grid-cols-3"
          >
            {stats.map((s) => (
              <motion.div
                key={s.label}
                variants={wordReveal}
                className="mqh-shimmer relative overflow-hidden rounded-2xl border border-white/15 bg-white/10 p-6 text-center backdrop-blur"
              >
                <dt className="text-3xl font-bold tracking-tight text-white sm:text-4xl">{s.value}</dt>
                <dd className="mt-2 text-sm text-white/70">{s.label}</dd>
              </motion.div>
            ))}
          </motion.dl>
        </div>
      </div>
    </section>
  );
}

Dependencies

motion

Licence

Built by Web Innoventix. Free for personal and commercial use, no attribution required.

Built by Web Innoventix

Need a custom interface, a full website, or SEO that gets you cited by AI? We design, build and rank it end to end.

Get a free quote

Similar components

Browse all →
Three Column Icon Grid

Three Column Icon Grid

Original

A responsive icon grid that presents six product capabilities as scannable cards, each with an inline SVG icon, title and short description.

Alternating Media Rows

Alternating Media Rows

Original

Three feature rows that alternate a text column with a CSS-built visual panel, walking the reader through a plan, measure and ship story.

Bento Feature Grid

Bento Feature Grid

Original

A bento-style grid mixing one large hero cell, a tall stat cell and several compact cards to give features a clear visual hierarchy.

Tabbed Feature Switcher

Tabbed Feature Switcher

Original

A tabbed feature preview that switches panels using only native radio inputs and Tailwind peer variants, so it works with no JavaScript.

Stat Backed Features

Stat Backed Features

Original

A feature layout that pairs each capability with a headline metric, so every claim is anchored to a measurable result.

Scroll-reveal bento grid

Scroll-reveal bento grid

Original

An asymmetric bento feature grid whose cards stagger into view on scroll, lift on hover and feature an animated conic gradient border, shimmering headline, growing bar chart and a masked marquee tag strip.

Sticky scroll steps

Sticky scroll steps

Original

A scroll-linked how-it-works section where a sticky panel cross-fades between steps and a progress ring plus filling timeline track advance as you scroll through the process.

Spotlight hover feature cards

Spotlight hover feature cards

Original

A responsive feature card grid where each card follows the cursor with a radial spotlight glow, lifts and rotates its icon on hover, reveals a call to action, and sits above a scrolling logo marquee.

Bordered Feature Grid (2x2)

Bordered Feature Grid (2x2)

MIT

A two-column grid of bordered feature cards, each pairing an outlined icon with a title and supporting copy. Clean, enterprise-leaning layout with full dark-mode support.

Outlined Feature Cards with CTA

Outlined Feature Cards with CTA

MIT

A three-column feature section with heading and intro, plus blue-outlined cards that each carry an icon, description, and a circular arrow call-to-action. Fully theme-aware.

Icon-Left Feature List

Icon-Left Feature List

MIT

A centered heading over a three-column feature list, each row leading with a rounded icon badge and a 'Learn More' link. Classic marketing feature block, ported with added dark variants.

Hover-Reveal Bento Grid

Hover-Reveal Bento Grid

MIT

The Magic UI bento pattern: a mixed-span grid of cards where the icon shrinks and the description lifts on hover to reveal a call-to-action. Self-contained (no framer-motion, no icon libs), pure CSS group-hover, with a glow background and full dark styling.