|
1 | 1 | import * as React from 'react'; |
2 | | -import Button from '@mui/material/Button'; |
3 | | -// import CssBaseline from '@mui/material/CssBaseline'; |
4 | | -import TextField from '@mui/material/TextField'; |
5 | | -import FormControlLabel from '@mui/material/FormControlLabel'; |
6 | | -import Checkbox from '@mui/material/Checkbox'; |
7 | | -import Link from '@mui/material/Link'; |
8 | 2 | import Paper from '@mui/material/Paper'; |
9 | 3 | import Box from '@mui/material/Box'; |
10 | 4 | import { Grid } from '@mui/material'; |
11 | | -import Typography from '@mui/material/Typography'; |
12 | 5 | import { createTheme, ThemeProvider } from '@mui/material/styles'; |
13 | | -import Container from '@mui/material/Container'; |
14 | 6 | import PsychologyIcon from '@mui/icons-material/Psychology'; |
15 | 7 | import HandshakeIcon from '@mui/icons-material/Handshake'; |
16 | 8 | import WorkIcon from '@mui/icons-material/Work'; |
17 | 9 | import UpgradeIcon from '@mui/icons-material/Upgrade'; |
18 | | -import { |
19 | | - FaTwitter, |
20 | | - FaLinkedinIn, |
21 | | - FaGithub, |
22 | | - FaYoutube, |
23 | | - FaStackOverflow, |
24 | | - FaCodepen, |
25 | | -} from 'react-icons/fa'; |
26 | | -import { SiReplit } from 'react-icons/si'; |
27 | | -import { FiPhone, FiAtSign } from 'react-icons/fi'; |
28 | | -import { HiOutlineLocationMarker } from 'react-icons/hi'; |
29 | 10 | import { styled } from '@mui/material/styles'; |
30 | | -import { socialsData } from '../../data/socialsData'; |
31 | | -import { contactsData } from '../../data/contactsData'; |
32 | 11 | import './PreContact.css'; |
33 | 12 |
|
34 | 13 | const theme = createTheme({ |
@@ -65,63 +44,60 @@ const Item = styled(Paper)(({ theme }) => ({ |
65 | 44 | padding: theme.spacing(1), |
66 | 45 | textAlign: 'center', |
67 | 46 | color: theme.palette.text.secondary, |
68 | | - |
69 | 47 | } |
70 | 48 | )); console.log(theme.palette.mode) |
71 | 49 |
|
72 | | - |
| 50 | + |
73 | 51 |
|
74 | 52 | function PreContact() { |
75 | | - |
76 | 53 |
|
77 | 54 | return ( |
78 | | - |
79 | | - <ThemeProvider theme={theme}> |
80 | | - <Grid item xs={12} sm={8} md={5} component={Paper} elevation={6} square> |
81 | | - <Box |
82 | | - sx={{ |
83 | | - |
84 | | - mx: 1, |
85 | | - display: 'flex', |
86 | | - flexDirection: 'column', |
87 | | - alignItems: 'center', |
88 | | - }} |
89 | | - > |
90 | | - <Grid spacing={2}> |
91 | | - <Grid item xs={12}> |
92 | | - <Item sx={{color:'#eaeaea', bgcolor: '#232526' }}><UpgradeIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color:'#eaeaea', bgcolor: '#232526' }} /> |
93 | | - Looking to updgrade your website? </Item> |
94 | | - </Grid> |
| 55 | + <ThemeProvider theme={theme}> |
| 56 | + <Grid item xs={12} sm={8} md={5} component={Paper} elevation={6} square> |
| 57 | + <Box |
| 58 | + sx={{ |
| 59 | + |
| 60 | + mx: 1, |
| 61 | + display: 'flex', |
| 62 | + flexDirection: 'column', |
| 63 | + alignItems: 'center', |
| 64 | + }} |
| 65 | + > |
| 66 | + <Grid spacing={2}> |
| 67 | + <Grid item xs={12}> |
| 68 | + <Item sx={{ color: '#eaeaea', bgcolor: '#232526' }}><UpgradeIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color: '#eaeaea', bgcolor: '#232526' }} /> |
| 69 | + Looking to updgrade your website? </Item> |
95 | 70 | </Grid> |
| 71 | + </Grid> |
96 | 72 |
|
97 | | - <Grid spacing={2}> |
98 | | - <Grid item xs={12}> |
99 | | - <Item sx={{color:'#eaeaea', bgcolor: '#232526' }}><PsychologyIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color:'#eaeaea', bgcolor: '#232526' }} /> |
100 | | - Got an idea for an app or website that you'd like to see come to life?</Item> |
101 | | - </Grid> |
| 73 | + <Grid spacing={2}> |
| 74 | + <Grid item xs={12}> |
| 75 | + <Item sx={{ color: '#eaeaea', bgcolor: '#232526' }}><PsychologyIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color: '#eaeaea', bgcolor: '#232526' }} /> |
| 76 | + Got an idea for an app or website that you'd like to see come to life?</Item> |
102 | 77 | </Grid> |
| 78 | + </Grid> |
103 | 79 |
|
104 | | - <Grid spacing={2}> |
105 | | - <Grid item xs={12}> |
106 | | - <Item sx={{color:'#eaeaea', bgcolor: '#232526' }}><HandshakeIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color:'#eaeaea', bgcolor: '#232526' }} /> |
107 | | - Interested in collaborating or forming a team to create something amazing?</Item> |
108 | | - </Grid> |
| 80 | + <Grid spacing={2}> |
| 81 | + <Grid item xs={12}> |
| 82 | + <Item sx={{ color: '#eaeaea', bgcolor: '#232526' }}><HandshakeIcon sx={{ p: '0.2rem', width: '3rem', height: '3rem', borderRadius: "50%", color: '#eaeaea', bgcolor: '#232526' }} /> |
| 83 | + Interested in collaborating or forming a team to create something amazing?</Item> |
109 | 84 | </Grid> |
| 85 | + </Grid> |
| 86 | + |
| 87 | + <Grid spacing={2}> |
| 88 | + <Grid item xs={12}> |
| 89 | + <Item maxwidth sx={{ color: '#eaeaea', bgcolor: '#232526' }}><WorkIcon sx={{ p: '0.4rem', width: '3rem', height: '3rem', borderRadius: "50%", color: '#eaeaea', bgcolor: '#232526' }} /> |
| 90 | + Hiring web developers with my skillset?</Item> |
| 91 | + </Grid> |
| 92 | + </Grid> |
| 93 | + |
| 94 | + </Box> |
| 95 | + </Grid> |
110 | 96 |
|
111 | | - <Grid spacing={2}> |
112 | | - <Grid item xs={12}> |
113 | | - <Item maxwidth sx={{color:'#eaeaea', bgcolor: '#232526' }}><WorkIcon sx={{ p: '0.4rem', width: '3rem', height: '3rem', borderRadius: "50%", color:'#eaeaea', bgcolor: '#232526' }} /> |
114 | | - Hiring web developers with my skillset?</Item> |
115 | | - </Grid> |
116 | | - </Grid> |
117 | | - |
118 | | - </Box> |
119 | | - </Grid> |
120 | 97 |
|
121 | 98 |
|
122 | | - |
123 | | - </ThemeProvider> |
124 | | - ); |
| 99 | + </ThemeProvider> |
| 100 | + ); |
125 | 101 | } |
126 | 102 |
|
127 | 103 | export default PreContact; |
|
0 commit comments