/*! ========================================================= * 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. */ import React, { useReducer } from 'react'; import { Avatar, AvatarGroup, Badge, Box, Button, Flex, Grid, Icon, Image, Input, Link, Menu, MenuButton, MenuItem, MenuList, Stack, Text, useColorMode, useColorModeValue, useDisclosure } from '@chakra-ui/react'; // Assets import avatar1 from 'assets/img/avatars/avatar1.png'; import avatar10 from 'assets/img/avatars/avatar10.png'; import avatar2 from 'assets/img/avatars/avatar2.png'; import avatar3 from 'assets/img/avatars/avatar3.png'; import avatar4 from 'assets/img/avatars/avatar4.png'; import avatar5 from 'assets/img/avatars/avatar5.png'; import avatar7 from 'assets/img/avatars/avatar7.png'; import avatar8 from 'assets/img/avatars/avatar8.png'; import avatar9 from 'assets/img/avatars/avatar9.png'; import teamsImage from 'assets/img/teams-image.png'; import { ThumbsUp, Plus, MessageCircle, Box as BoxIcon, PenTool, Star, Share2, StarHalf, Files, MoreVertical } from 'lucide-react'; // Custom components import Card from 'components/Card/Card.js'; import CardBody from 'components/Card/CardBody.js'; import CardHeader from 'components/Card/CardHeader.js'; import { InvisionLogo, SlackLogo } from 'components/Icons/Icons'; import { HSeparator } from 'components/Separator/Separator.js'; const reducer = (state, action) => { if (action.type === 'SWITCH_ACTIVE') { if (action.payload === 'overview') { const newState = { overview: true, teams: false, projects: false }; return newState; } else if (action.payload === 'teams') { const newState = { overview: false, teams: true, projects: false }; return newState; } else if (action.payload === 'projects') { const newState = { overview: false, teams: false, projects: true }; return newState; } } return state; }; function Teams() { const [ state, dispatch ] = useReducer(reducer, { overview: false, teams: true, projects: false }); const { colorMode } = useColorMode(); const { isOpen: isOpen1, onOpen: onOpen1, onClose: onClose1 } = useDisclosure(); const { isOpen: isOpen2, onOpen: onOpen2, onClose: onClose2 } = useDisclosure(); // Chakra color mode const textColor = useColorModeValue('gray.700', 'white'); const bgProfile = useColorModeValue('hsla(0,0%,100%,.8)', 'navy.800'); const borderProfileColor = useColorModeValue('white', 'transparent'); const bgButton = useColorModeValue('linear-gradient(81.62deg, #313860 2.25%, #151928 79.87%)', 'blue.500'); const bgBadge = useColorModeValue('gray.100', 'navy.900'); return ( Alec Thompson alec@simmmple.com Add Story Esthera Boris U Tao G Kay R Tom M Nicole N Emma O Marie P Bruce M Sandra A Katty L Esthera Jackson 3 days ago Personal profiles are the perfect way for you to grab their attention and persuade recruiters to continue reading your CV because you’re telling them from the off exactly why they should hire you. 1502 36 12 and 30+ more Michael Lewis I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! 3 likes 2 shares Jessica Stones Society has put up so many boundaries, so many limitations on what’s right and wrong that it’s almost impossible to get a pure thought out. It’s like a little kid, a little boy. 10 likes 1 share Anthony Joshua It's all about work ! Great ideas mean nothing if they aren't realised by hungry, desiring people. 42 likes 6 shares Digital Marketing Action Another action Something else here A group of people who collectively are responsible for all of the work necessary to produce working, validated assets. Industry: MARKETING TEAM Rating: Members: Design Action Another action Something else here Because it's about motivating the doers. Because I’m here to follow my dreams and inspire other people to follow their dreams, too. Industry: DESIGN TEAM Rating: Members: Slack Meet 11:00 AM You have an upcoming meet for Marketing Planning Meeting ID:{' '} 902-128-281 Invision 04:50 PM You have an upcoming video call for{' '} Chakra Design {' '} at 04:50 PM. Meeting ID:{' '} 902-128-281 ); } export default Teams;