diff --git a/src/components/ui/Mobile/FooterComMobile.jsx b/src/components/ui/Mobile/FooterComMobile.jsx index b0a92ad..1a09418 100644 --- a/src/components/ui/Mobile/FooterComMobile.jsx +++ b/src/components/ui/Mobile/FooterComMobile.jsx @@ -68,9 +68,9 @@ const FooterCom = () => { display="flex" flexDirection="row" flexWrap="wrap" - justifyContent="space-between" + justifyContent="center" w="100%" - // alignItems="center" + alignItems="center" > {footerData.map((val) => ( @@ -101,13 +101,13 @@ const FooterCom = () => { ))} - + ©Copyright 2023 WDIPL – Software company. All rights reserved @@ -135,8 +135,9 @@ const FooterCom = () => { @@ -151,6 +152,7 @@ const FooterCom = () => { alignItems="center" height="38px" gap={5} + w="100%" _hover={{ bgColor: "#C01550" }} > PDF icon diff --git a/src/components/ui/Mobile/GSFMobile.jsx b/src/components/ui/Mobile/GSFMobile.jsx index bc8c892..04773b8 100644 --- a/src/components/ui/Mobile/GSFMobile.jsx +++ b/src/components/ui/Mobile/GSFMobile.jsx @@ -1,6 +1,7 @@ import { Container, Flex, Image, Box, Text } from "@chakra-ui/react"; import React from "react"; import LineBar from "../../../assets/imgpsh_fullsize_anim.png"; + const data = [ { id: 1, phase: "Strategy and Planning", date: "June 2023 - July 2023" }, { id: 2, phase: "App Development", date: "August 2023 - September 2023" }, @@ -16,23 +17,24 @@ const data = [ const Timeline = () => { return ( + {/* Upper Flex for the first 3 timeline items */} {data.slice(0, 3).map((item) => ( - + { }} > {item.phase} - + {item.date} @@ -60,33 +62,44 @@ const Timeline = () => { flexDirection="column" alignItems="center" > - + {Array(5) - .fill(null) - .map((_, index) => ( + .fill("") + .map((_, idx) => ( @@ -94,17 +107,17 @@ const Timeline = () => { - {/* Bottom Timeline Phases */} + {/* Lower Flex for the remaining 2 timeline items */} {data.slice(3, 5).map((item) => ( - + { }} > {item.phase} - + {item.date}