PK!A7��nimport React, { useState, useEffect } from "react"; import tw from "tailwind-styled-components"; import { Link, useNavigate } from "react-router-dom"; import Images from "../Images"; // import { Page } from "../../Components/Styles/PageStyles"; import { useSelector } from "react-redux"; import { FiMap } from "react-icons/fi"; import { MdOutlineDashboard } from "react-icons/md"; import { FaMailBulk } from "react-icons/fa"; import { CgProfile } from "react-icons/cg"; const RejectedApplication = () => { const user = useSelector((state) => state.UserReducer.user); const navigate = useNavigate(); const InitialLoading = false; const error = false; const data = [ { title: "Your Documents are under Scruitiny ", notification: "Please wait for Approval", status: "pending", }, ]; return ( {/* Welcome {user?.name}! */}
Hi {user?.name}, {" "} Great to have you on board.
{/* */} {/* */} Go To Dashboard See today's summary like count of total campaigns, sms sent, delivered and failed. Run a campaign We have added 10 credits of sms in your account so that you can run a campaign.
); }; const Center = tw.div`grid place-items-center `; const Title = tw.h2`text-base lg:text-xl text-gray-600 font-medium text-center mb-2 `; const MainTitle = tw.h2`text-base flex justify-center text-gray-700 w-44 font-medium text-center items-center mb-6 mt-3`; const SubTitle = tw.h3`text-base text-gray-500 text-center pl-20 pr-20`; const CardTitle = tw.h3`text-base md:text-xl text-white mb-0.5`; const Image = tw.div`w-1/2 mt-2`; const BtnWrapper = tw.div`flex my-5 mt-14 items-center justify-center`; const Button = tw.button`w-40 mt-6 text-white bg-purple-500 rounded-lg h-12`; const BoxWrapper = tw.div`flex flex-col md:flex-row justify-center items-center space-y-10 md:space-x-12 w-9/12 max-w-3xl md:space-y-0 mt-10`; const Box = tw.div` ${(p) => p.$primary ? "bg-custom-zambia text-white " : "bg-custom-paygo-yellows text-white"} flex flex-col items-center justify-center px-10 h-40 md:h-60 font-medium rounded-md shadow-sm hover:shadow-xl cursor-pointer text-center mx-auto transform hover:scale-105 transition `; const BoxPara = tw.p` text-xs md:text-sm font-light mt-1 text-gray-100`; export const Page = tw.section` ${(p) => p.$maxWidth} py-24 md:pt-28 mx-auto `; export default RejectedApplication;