import React from "react"; const TimeLine = () => { const timelineData = [ { name: "Private Alpha", description: "Released on October 17, 2022" }, { name: "First open-source commit", description: "Scheduled on November 19, 2022" }, { name: "Public beta", description: "Scheduled on December 25, 2022" }, { name: "Real-time sync", description: "Scheduled on January 14th, 2022" }, { name: "GitHub and Slack integration", description: " Scheduled on January 5, 2022" } ]; return (

Here's what we are building to keep your itineraries right.{" "}

Full roadmap, coming soon.

    {timelineData.map((data: any, index: number) => (
  1. {data.name}

  2. ))}
); }; export default TimeLine;