diff --git a/src/views/Pages/Profile/Overview.js b/src/views/Pages/Profile/Overview.js deleted file mode 100755 index a7a7127a..00000000 --- a/src/views/Pages/Profile/Overview.js +++ /dev/null @@ -1,757 +0,0 @@ -/*! - -========================================================= -* 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 { useReducer } from "react"; - -import { - Avatar, - AvatarGroup, - Box, - Button, - Flex, - Grid, - Icon, - Image, - Link, - Switch, - Text, - useColorMode, - useColorModeValue, -} from "@chakra-ui/react"; -// Assets -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 avatar6 from "assets/img/avatars/avatar6.png"; -import ImageArchitect1 from "assets/img/ImageArchitect1.png"; -import ImageArchitect2 from "assets/img/ImageArchitect2.png"; -import ImageArchitect3 from "assets/img/ImageArchitect3.png"; -import { - Box, - Facebook, - Instagram, - PenTool, - Plus, - Twitter, - Files, -} from "lucide-react"; -// Custom components -import Card from "components/Card/Card"; -import CardBody from "components/Card/CardBody"; -import CardHeader from "components/Card/CardHeader"; -import { HSeparator } from "components/Separator/Separator"; - -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 Overview() { - const [state, dispatch] = useReducer(reducer, { - overview: true, - teams: false, - projects: false, - }); - - const { colorMode } = useColorMode(); - - // Chakra color mode - const textColor = useColorModeValue("gray.700", "white"); - const iconColor = useColorModeValue("blue.500", "white"); - const bgProfile = useColorModeValue("hsla(0,0%,100%,.8)", "navy.800"); - const borderProfileColor = useColorModeValue("white", "transparent"); - - return ( - - - - - - - Alec Thompson - - - alec@simmmple.com - - - - - - - - - - - - - - - Platform Settings - - - - - - ACCOUNT - - - - - Email me when someone follows me - - - - - - Email me when someone answers on my post - - - - - - Email me when someone mentions me - - - - APPLICATION - - - - - New launches and projects - - - - - - Monthly product changes - - - - - - Subscribe to newsletter - - - - - - - - - Overview Information - - - - - - Hi, I’m Esthera Jackson, Decisions: If you can’t decide, the - answer is no. If two equally difficult paths, choose the one - more painful in the short term (pain avoidance is creating an - illusion of equality). - - - - - Full Name:{" "} - - - Esthera Jackson - - - - - Mobile:{" "} - - - (44) 123 1234 123 - - - - - Email:{" "} - - - esthera@simmmple.com - - - - - Location:{" "} - - - United States - - - - - Social Media:{" "} - - - - - - - - - - - - - - - - - - - - Conversations - - - - - - - - - - Sophie B.{" "} - - - Hi! I need more information... - - - - - - - - - - - Sophie B.{" "} - - - Awesome work, can you change... - - - - - - - - - - - Sophie B.{" "} - - - Have a great afternoon... - - - - - - - - - - - Sophie B.{" "} - - - About files I can... - - - - - - - - - - - Sophie B.{" "} - - - About files I can... - - - - - - - - - - - - - - Projects - - - Architects design houses - - - - - - - - - - - - - Project #1 - - - Modern - - - As Uber works through a huge amount of internal management - turmoil. - - - - - - - - - - - - - - - - - - - - Project #2 - - - Scandinavian - - - Music is something that every person has his or her own - specific opinion about. - - - - - - - - - - - - - - - - - - - - Project #3 - - - Minimalist - - - Different people have different taste, especially various - types of music. - - - - - - - - - - - - - - - - - - ); -} - -export default Overview; diff --git a/src/views/Pages/Profile/Projects.js b/src/views/Pages/Profile/Projects.js deleted file mode 100755 index 138142e3..00000000 --- a/src/views/Pages/Profile/Projects.js +++ /dev/null @@ -1,742 +0,0 @@ -/*! - -========================================================= -* 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 { - Avatar, - AvatarGroup, - Button, - Flex, - Grid, - Icon, - Menu, - MenuButton, - MenuItem, - MenuList, - Text, - useColorModeValue, - useColorMode, - useDisclosure, -} from "@chakra-ui/react"; -// Assets -import avatar1 from "assets/img/avatars/avatar1.png"; -import avatar2 from "assets/img/avatars/avatar2.png"; -import avatar3 from "assets/img/avatars/avatar3.png"; -import avatar5 from "assets/img/avatars/avatar5.png"; -import avatar4 from "assets/img/avatars/avatar4.png"; -import avatar7 from "assets/img/avatars/avatar7.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 { - AdobexdLogo, - AtlassianLogo, - JiraLogo, - SlackLogo, - SpotifyLogo, -} from "components/Icons/Icons"; -import { HSeparator } from "components/Separator/Separator"; -import React, { useReducer } from "react"; -import { Plus, Box, PenTool, Files, MoreVertical } from "lucide-react"; - -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 Projects() { - const [state, dispatch] = useReducer(reducer, { - overview: false, - teams: false, - projects: true, - }); - - const { colorMode } = useColorMode(); - - 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 { - isOpen: isOpen5, - onOpen: onOpen5, - onClose: onClose5, - } = 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 bgIconBox = useColorModeValue( - "linear-gradient(81.62deg, #313860 2.25%, #151928 79.87%)", - "navy.700" - ); - const secondaryColor = useColorModeValue("gray.500", "white"); - - return ( - - - - - - - Alec Thompson - - - alec@simmmple.com - - - - - - - - - - - - Some of Our Awesome Projects - - - This is the paragraph where you can write more details about your - projects. Keep you user engaged by providing meaningful information. - - - - - - - - - - - - - Slack Bot - - - - - - - - - - - - - - - - Action - Another action - Something else here - - - - - - - - If everything I did failed - which it doesn't, I think that it - actually succeeds. - - - - - - 5 - - - Participants - - - - - 02.03.22 - - - Due Date - - - - - - - - - - - - - - - - Premium Support - - - - - - - - - - - - - - Action - Another action - Something else here - - - - - - - - Pink is obviously a better color. Everyone’s born confident, and - everything’s taken away from you. - - - - - - 3 - - - Participants - - - - - 22.11.22 - - - Due Date - - - - - - - - - - - - - - - - Design Tools - - - - - - - - - - - - - - - - Action - Another action - Something else here - - - - - - - - Constantly growing. We’re constantly making mistakes from which - we learn and improve. - - - - - - 4 - - - Participants - - - - - 06.03.21 - - - Due Date - - - - - - - - - - - - - - - - Looking Great - - - - - - - - - - - - - Action - Another action - Something else here - - - - - - - - You have the opportunity to play this game of life you need to - appreciate every moment. - - - - - - 6 - - - Participants - - - - - 14.03.24 - - - Due Date - - - - - - - - - - - - - - - - Developer First - - - - - - - - - - - - - - Action - Another action - Something else here - - - - - - - - For standing out. But the time is now to be okay to be the - greatest you. - - - - - - 4 - - - Participants - - - - - 02.03.22 - - - Due Date - - - - - - - - - - - - - - - - ); -} - -export default Projects; diff --git a/src/views/Pages/Profile/Teams.js b/src/views/Pages/Profile/Teams.js deleted file mode 100755 index c1fcf0cd..00000000 --- a/src/views/Pages/Profile/Teams.js +++ /dev/null @@ -1,741 +0,0 @@ -/*! - -========================================================= -* 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;