/*! ========================================================= * 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 { Button, Flex, Grid, Icon, Menu, MenuButton, MenuItem, MenuList, Progress, Stack, Table, Tbody, Text, Th, Thead, Tr, useColorModeValue, useColorMode, useDisclosure, } from "@chakra-ui/react"; import bgCardReports from "assets/img/background-card-reports.png"; // Custom components import Card from "components/Card/Card"; import CardBody from "components/Card/CardBody"; import CardHeader from "components/Card/CardHeader"; import IconBox from "components/Icons/IconBox"; import { CartIcon, RocketIcon } from "components/Icons/Icons"; import TablesReportsRow from "components/Tables/TablesReportsRow"; import React from "react"; import { ThumbsUp, User, MoreHorizontal } from "lucide-react"; import { tablesReportsData } from "variables/general"; function Reports() { const textColor = useColorModeValue("gray.700", "white"); const secondaryColor = useColorModeValue("gray.400", "white"); const iconColor = useColorModeValue("blue.900", "blue.500"); const bgProgress = useColorModeValue("gray.200", "navy.900"); const borderColor = useColorModeValue("gray.200", "gray.600"); const { isOpen: isOpen1, onOpen: onOpen1, onClose: onClose1, } = useDisclosure(); const { isOpen: isOpen2, onOpen: onOpen2, onClose: onClose2, } = useDisclosure(); const { isOpen: isOpen3, onOpen: onOpen3, onClose: onClose3, } = useDisclosure(); const { isOpen: isOpen4, onOpen: onOpen4, onClose: onClose4, } = useDisclosure(); const { colorMode } = useColorMode(); return ( Action Another action Something else here 1600 Users Active +55% Action Another action Something else here 357 Click Events +124% Action Another action Something else here 2340 Purchases +14% Action Another action Something else here 940 Likes +90% Reviews Positive Reviews 80% Neutral Reviews 17% Negative Reviews 3% More than{" "} 1,500,000 developers {" "} used Creative Tim's products and over{" "} 700,000 projects {" "} were created. {tablesReportsData.map((row, index, arr) => { return ( ); })}
Name Function Review Email Employed Id
); } export default Reports;