/*! ========================================================= * 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, { useState } from "react"; // Chakra imports import { Accordion, AccordionButton, AccordionIcon, AccordionItem, AccordionPanel, Box, Button, Flex, Icon, Image, SimpleGrid, Stack, Tag, Text, useColorModeValue, } from "@chakra-ui/react"; // Assets import basic from "assets/img/basic-auth.png"; import deloitteLogo from "assets/svg/deloitte-logo.svg"; import georgiaLogo from "assets/svg/georgia-logo.svg"; import googleLogo from "assets/svg/google-logo.svg"; import microsoftLogo from "assets/svg/microsoft-logo.svg"; import msnLogo from "assets/svg/msn-logo.svg"; import zohoLogo from "assets/svg/zoho-logo.svg"; import Card from "components/Card/Card"; import { FaCheckCircle, FaTimesCircle } from "react-icons/fa"; function Pricing() { const [activeButton, setActiveButton] = useState({ monthly: true, yearly: false, }); const textColor = useColorModeValue("gray.700", "white"); const secondaryColor = useColorModeValue("gray.500", "white"); const borderColor = useColorModeValue("border.200", "border.600"); const bgActiveButton = useColorModeValue("#fff", "blue.500"); const bgButtonGroup = useColorModeValue("gray.50", "navy.800"); const bgTimesIcon = useColorModeValue("gray.700", "white"); return ( See our pricing You have Free Unlimited Updates and Premium Support on each package. STARTER {activeButton.monthly ? "$59" : "$119"} 2 Team Members 20GB Cloud Storage Integration Help Sketch Files API Access Complete Documentation PREMIUM {activeButton.monthly ? "$89" : "$159"} 10 Team Members 40GB Cloud Storage Integration Help Sketch Files API Access Complete Documentation ENTERPRISE {activeButton.monthly ? "$99" : "$399"} Unlimited Team Members 100GB Cloud Storage Integration Help Sketch Files API Access Complete Documentation More than 50+ brands trust Chakra Soft UI Frequently Asked Questions A lot of people don't appreciate the moment until it’s passed. I'm not trying my hardest, and I'm not trying to do How do I order? We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed. How can i make the payment? It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter. Because it's about motivating the doers. Because I’m here to follow my dreams and inspire other people to follow their dreams, too. We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed. How much time does it take to receive the order? The time is now for it to be okay to be great. People in this world shun people for being great. For being a bright color. For standing out. But the time is now to be okay to be the greatest you. Would you believe in what you believe in, if you were the only one who believed it? If everything I did failed - which it doesn't, it actually succeeds - just the fact that I'm willing to fail is an inspiration. People are so scared to lose that they don't even try. Like, one thing people can't say is that I'm not trying, and I'm not trying my hardest, and I'm not trying to do the best way I know how. Can I resell the products? I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! They're slowed down by their perception of themselves. If you're taught you can’t do anything, you won’t do anything. I was taught I could do everything. If everything I did failed - which it doesn't, it actually succeeds - just the fact that I'm willing to fail is an inspiration. People are so scared to lose that they don't even try. Like, one thing people can't say is that I'm not trying, and I'm not trying my hardest, and I'm not trying to do the best way I know how. Where do I find the shipping details? There’s nothing I really wanted to do in life that I wasn’t able to get good at. That’s my skill. I’m not really specifically talented at anything except for the ability to learn. That’s what I do. That’s what I’m here for. Don’t be afraid to be wrong because you can’t learn anything from a compliment. I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! They're slowed down by their perception of themselves. If you're taught you can’t do anything, you won’t do anything. I was taught I could do everything. ); } export default Pricing;