diff --git a/src/pages/layouts/Timeline.jsx b/src/pages/layouts/Timeline.jsx index 8bb87f7..f2a191e 100644 --- a/src/pages/layouts/Timeline.jsx +++ b/src/pages/layouts/Timeline.jsx @@ -1,43 +1,53 @@ +import React from "react"; import { Box, chakra, Container, + Text, HStack, + VStack, Flex, useColorModeValue, useBreakpointValue, } from "@chakra-ui/react"; -import { motion } from "framer-motion"; -import TimelineCard from "../../components/cards/TimelineCard"; -import "../../assets/styles/pages/layouts/Timeline.css"; const milestones = [ { id: 1, date: "20th July, 2024", title: "Registrations Open", - description: ``, + description: `The beginning of an exciting journey!`, }, { id: 2, date: "18th July, 2024", title: "Awareness Session", - description: ``, + description: `An informative session to kick things off.`, }, { id: 3, date: "18th July, 2024", title: "Registrations Close", - description: ``, + description: `Last chance to be a part of this event.`, + }, + { + id: 4, + date: "24th July, 2024", + title: "Online Session", + description: `Join us online for an engaging session.`, }, - { id: 4, date: "24th July, 2024", title: "Online Session", description: `` }, { id: 5, date: "10th August, 2024", title: "Qualifier Round", - description: ``, + description: `Show your skills and qualify for the finale.`, + }, + { + id: 6, + date: "11th August, 2024", + title: "The Finale", + description: `The grand finale - don't miss it!`, }, - { id: 6, date: "11th August, 2024", title: "The Finale", description: `` }, ]; const Milestones = () => { @@ -45,122 +55,139 @@ const Milestones = () => { const isDesktop = useBreakpointValue({ base: false, md: true }); return ( -