React Timeline - Flowbite

Get started with the responsive timeline component to show data in a chronological order with support for multiple styles, sizes, and variants

The timeline component can be used to show series of data in a chronological order for use cases such as activity feeds, user actions, application updates, and more.

Default timeline

  1. Application UI code in Tailwind CSS

    Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.
  2. Marketing UI design in Figma

    All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.
  3. E-Commerce UI code in Tailwind CSS

    Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
<Timeline>
  <Timeline.Item>
    <Timeline.Point />
    <Timeline.Content>
      <Timeline.Time>
        February 2022
      </Timeline.Time>
      <Timeline.Title>
        Application UI code in Tailwind CSS
      </Timeline.Title>
      <Timeline.Body>
        Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.
      </Timeline.Body>
      <Button color="gray">
        Learn More
        <HiArrowNarrowRight className="ml-2 h-3 w-3" />
      </Button>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point />
    <Timeline.Content>
      <Timeline.Time>
        March 2022
      </Timeline.Time>
      <Timeline.Title>
        Marketing UI design in Figma
      </Timeline.Title>
      <Timeline.Body>
        All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point />
    <Timeline.Content>
      <Timeline.Time>
        April 2022
      </Timeline.Time>
      <Timeline.Title>
        E-Commerce UI code in Tailwind CSS
      </Timeline.Title>
      <Timeline.Body>
        Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
</Timeline>

Vertical timeline

  1. Application UI code in Tailwind CSS

    Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.
  2. Marketing UI design in Figma

    All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.
  3. E-Commerce UI code in Tailwind CSS

    Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
<Timeline>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Time>
        February 2022
      </Timeline.Time>
      <Timeline.Title>
        Application UI code in Tailwind CSS
      </Timeline.Title>
      <Timeline.Body>
        Get access to over 20+ pages including a dashboard layout, charts, kanban board, calendar, and pre-order E-commerce & Marketing pages.
      </Timeline.Body>
      <Button color="gray">
        Learn More
        <HiArrowNarrowRight className="ml-2 h-3 w-3" />
      </Button>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Time>
        March 2022
      </Timeline.Time>
      <Timeline.Title>
        Marketing UI design in Figma
      </Timeline.Title>
      <Timeline.Body>
        All of the pages and components are first designed in Figma and we keep a parity between the two versions even as we update the project.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Time>
        April 2022
      </Timeline.Time>
      <Timeline.Title>
        E-Commerce UI code in Tailwind CSS
      </Timeline.Title>
      <Timeline.Body>
        Get started with dozens of web components and interactive elements built on top of Tailwind CSS.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
</Timeline>

Stepper timeline

  1. Flowbite Library v1.0.0

    Get started with dozens of web components and interactive elements.
  2. Flowbite Library v1.2.0

    Get started with dozens of web components and interactive elements.
  3. Flowbite Library v1.3.0

    Get started with dozens of web components and interactive elements.
<Timeline horizontal>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Title>
        Flowbite Library v1.0.0
      </Timeline.Title>
      <Timeline.Time>
        Released on December 2, 2021
      </Timeline.Time>
      <Timeline.Body>
        Get started with dozens of web components and interactive elements.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Title>
        Flowbite Library v1.2.0
      </Timeline.Title>
      <Timeline.Time>
        Released on December 23, 2021
      </Timeline.Time>
      <Timeline.Body>
        Get started with dozens of web components and interactive elements.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
  <Timeline.Item>
    <Timeline.Point icon={HiCalendar} />
    <Timeline.Content>
      <Timeline.Title>
        Flowbite Library v1.3.0
      </Timeline.Title>
      <Timeline.Time>
        Released on January 5, 2022
      </Timeline.Time>
      <Timeline.Body>
        Get started with dozens of web components and interactive elements.
      </Timeline.Body>
    </Timeline.Content>
  </Timeline.Item>
</Timeline>