/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ // Chakra imports import { Stack, Text, useColorModeValue } from "@chakra-ui/react"; // Custom components import Card from "components/Card/Card"; import CardBody from "components/Card/CardBody"; import CardHeader from "components/Card/CardHeader"; import TimelineRow from "components/Tables/TimelineRow"; import React from "react"; import { timelineProjectsData } from "variables/general"; function Timeline() { const textColor = useColorModeValue("gray.700", "white"); const bgCard = useColorModeValue( "linear-gradient(81.62deg, #313860 2.25%, #151928 79.87%)", "linear-gradient(180deg, #3182CE 0%, #63B3ED 100%)" ); return ( Timeline with dotted line {timelineProjectsData.map((row, index) => { return ( ); })} Timeline dark with dashed line {timelineProjectsData.map((row, index) => { return ( ); })} ); } export default Timeline;