|
| 1 | +import React from "react"; |
| 2 | +import { Container, Grid, Link, Typography } from "@mui/material"; |
| 3 | +import { Box, Stack } from "@mui/system"; |
| 4 | + |
| 5 | +import { FaMap, FaEnvelopeOpen, FaPhoneAlt } from "react-icons/fa"; |
| 6 | +import { |
| 7 | + FaLinkedinIn, |
| 8 | + FaWhatsapp, |
| 9 | + FaGithub, |
| 10 | +} from "react-icons/fa"; |
| 11 | +import "../Styles/Contact.css"; |
| 12 | +import ContactForm from "./ContactForm"; |
| 13 | + |
| 14 | +const Contact = () => { |
| 15 | + return ( |
| 16 | + <Container sx={{ my: { xs: "12%", lg: "70px" } }}> |
| 17 | + <Stack textTransform="uppercase" mb={6}> |
| 18 | + <Typography |
| 19 | + fontWeight="900" |
| 20 | + fontSize={{ xs: "25px", lg: "60px" }} |
| 21 | + textAlign={{ xs: "left", lg: "center" }} |
| 22 | + > |
| 23 | + ME <span style={{ color: "var(--mainPrimary)" }}>CONTACTER</span> |
| 24 | + </Typography> |
| 25 | + </Stack> |
| 26 | + |
| 27 | + <Grid container> |
| 28 | + <Grid item lg={4}> |
| 29 | + <Stack |
| 30 | + textTransform="capitalize" |
| 31 | + height="100%" |
| 32 | + direction="column" |
| 33 | + justifyContent="space-between" |
| 34 | + > |
| 35 | + <Stack |
| 36 | + display="flex" |
| 37 | + flexDirection="row" |
| 38 | + alignItems="center" |
| 39 | + gap={2} |
| 40 | + mb={4} |
| 41 | + > |
| 42 | + <Stack fontSize={40} color="text.disabled"> |
| 43 | + <FaMap /> |
| 44 | + </Stack> |
| 45 | + |
| 46 | + <Stack fontSize={40} textAlign="left"> |
| 47 | + <Typography> Localisation </Typography> |
| 48 | + <Typography> Clermont-Ferrand, France </Typography> |
| 49 | + </Stack> |
| 50 | + </Stack> |
| 51 | + |
| 52 | + <Stack |
| 53 | + display="flex" |
| 54 | + flexDirection="row" |
| 55 | + alignItems="center" |
| 56 | + gap={2} |
| 57 | + mb={4} |
| 58 | + > |
| 59 | + <Stack fontSize={30} color="text.disabled"> |
| 60 | + <FaEnvelopeOpen /> |
| 61 | + </Stack> |
| 62 | + |
| 63 | + <Stack fontSize={30} textAlign="left"> |
| 64 | + <Typography> Email </Typography> |
| 65 | + |
| 66 | + <Link |
| 67 | + |
| 68 | + underline="hover" |
| 69 | + sx={{ color: "text.praimary", textTransform: "lowercase" }} |
| 70 | + fontSize={15} |
| 71 | + > |
| 72 | + |
| 73 | + </Link> |
| 74 | + </Stack> |
| 75 | + </Stack> |
| 76 | + |
| 77 | + <Stack |
| 78 | + display="flex" |
| 79 | + flexDirection="row" |
| 80 | + alignItems="center" |
| 81 | + gap={2} |
| 82 | + mb={4} |
| 83 | + > |
| 84 | + <Stack fontSize={40} color="text.disabled"> |
| 85 | + <FaPhoneAlt /> |
| 86 | + </Stack> |
| 87 | + |
| 88 | + <Stack textAlign="left"> |
| 89 | + <Typography> Appelez-moi </Typography> |
| 90 | + <Link |
| 91 | + href="tel:+33769724327" |
| 92 | + underline="hover" |
| 93 | + sx={{ color: "text.praimary" }} |
| 94 | + > |
| 95 | + +33 7 69 72 43 27 |
| 96 | + </Link> |
| 97 | + </Stack> |
| 98 | + </Stack> |
| 99 | + |
| 100 | + <Stack |
| 101 | + display="flex" |
| 102 | + flexDirection="row" |
| 103 | + alignItems="center" |
| 104 | + gap={2} |
| 105 | + mb={3} |
| 106 | + justifyContent={{ xs: "center", lg: "left" }} |
| 107 | + className="animate__animated animate__zoomIn" |
| 108 | + > |
| 109 | + <Link |
| 110 | + href="https://www.linkedin.com/in/math%C3%A9o-pichot-mo%C3%AFse-b538222a0/" |
| 111 | + target="_blank" |
| 112 | + rel="noopener" |
| 113 | + > |
| 114 | + <Box |
| 115 | + className="social-icons" |
| 116 | + bgcolor="action.disabledBackground" |
| 117 | + > |
| 118 | + <FaLinkedinIn /> |
| 119 | + </Box> |
| 120 | + </Link> |
| 121 | + |
| 122 | + <Link |
| 123 | + href="https://wa.me/+33769724327" |
| 124 | + target="_blank" |
| 125 | + rel="noopener" |
| 126 | + > |
| 127 | + <Box |
| 128 | + className="social-icons" |
| 129 | + bgcolor="action.disabledBackground" |
| 130 | + > |
| 131 | + <FaWhatsapp /> |
| 132 | + </Box> |
| 133 | + </Link> |
| 134 | + |
| 135 | + <Link |
| 136 | + href="https://github.com/KucoDEV" |
| 137 | + target="_blank" |
| 138 | + rel="noopener" |
| 139 | + > |
| 140 | + <Box |
| 141 | + className="social-icons" |
| 142 | + bgcolor="action.disabledBackground" |
| 143 | + > |
| 144 | + <FaGithub /> |
| 145 | + </Box> |
| 146 | + </Link> |
| 147 | + </Stack> |
| 148 | + </Stack> |
| 149 | + </Grid> |
| 150 | + |
| 151 | + <Grid item lg={7}> |
| 152 | + <ContactForm /> |
| 153 | + </Grid> |
| 154 | + </Grid> |
| 155 | + </Container> |
| 156 | + ); |
| 157 | +}; |
| 158 | +export default Contact; |
0 commit comments