/*! ========================================================= * 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 { Box, Button, Flex, FormControl, FormLabel, HStack, Icon, Input, Link, Switch, Text, useColorModeValue, } from "@chakra-ui/react"; // Assets import CoverImage from "assets/img/CoverImage.png"; import React from "react"; import { FaApple, FaFacebook, FaGoogle } from "react-icons/fa"; import AuthCover from "layouts/AuthCover"; function SignInCover() { // Chakra color mode const textColor = useColorModeValue("gray.400", "white"); const bgForm = useColorModeValue("white", "navy.800"); const titleColor = useColorModeValue("gray.700", "blue.500"); const colorIcons = useColorModeValue("gray.700", "white"); const bgIcons = useColorModeValue("trasnparent", "navy.700"); const bgIconsHover = useColorModeValue("gray.50", "whiteAlpha.100"); return ( Sign In with or Name Password Remember me Don’t have an account? Sign up ); } export default SignInCover;