@@ -62,25 +62,26 @@ function Contacts() {
6262 input : {
6363 border : `4px solid ${ theme . primary80 } ` ,
6464 backgroundColor : `${ theme . secondary } ` ,
65- color : `${ theme . tertiary } ` ,
66- fontFamily : 'var(--primaryFont)' ,
67- fontWeight : 500 ,
68- transition : 'border 0.2s ease-in-out' ,
69- '&:focus' : {
70- border : `4px solid ${ theme . primary600 } ` ,
71- } ,
72- } ,
73- message : {
74- border : `4px solid ${ theme . primary80 } ` ,
75- backgroundColor : `${ theme . secondary } ` ,
76- color : `${ theme . tertiary } ` ,
65+ color : `purple` ,
7766 fontFamily : 'var(--primaryFont)' ,
7867 fontWeight : 500 ,
7968 transition : 'border 0.2s ease-in-out' ,
8069 '&:focus' : {
8170 border : `4px solid ${ theme . primary600 } ` ,
71+ color : 'black' ,
8272 } ,
8373 } ,
74+ // message: {
75+ // border: `4px solid ${theme.primary80}`,
76+ // backgroundColor: `${theme.secondary}`,
77+ // color: `${theme.tertiary}`,
78+ // fontFamily: 'var(--primaryFont)',
79+ // fontWeight: 500,
80+ // transition: 'border 0.2s ease-in-out',
81+ // '&:focus': {
82+ // border: `4px solid ${theme.primary600}`,
83+ // },
84+ // },
8485 label : {
8586 backgroundColor : `${ theme . secondary } ` ,
8687 color : `${ theme . primary } ` ,
@@ -90,6 +91,11 @@ function Contacts() {
9091 padding : '0 5px' ,
9192 transform : 'translate(25px,50%)' ,
9293 display : 'inline-flex' ,
94+ '&:hover' : {
95+ transform : 'scale(1.1)' ,
96+ color : '#000' ,
97+ backgroundColor : theme . tertiary ,
98+ } ,
9399 } ,
94100 socialIcon : {
95101 width : '45px' ,
@@ -104,14 +110,15 @@ function Contacts() {
104110 transition : '250ms ease-in-out' ,
105111 '&:hover' : {
106112 transform : 'scale(1.1)' ,
107- color : theme . secondary ,
113+ color : '#000' ,
108114 backgroundColor : theme . tertiary ,
109115 } ,
110116 } ,
111117 detailsIcon : {
112- backgroundColor : theme . primary ,
113- color : theme . secondary ,
118+ backgroundColor : '#667' ,
119+ color : '#4faeba' ,
114120 borderRadius : '50%' ,
121+ border : '2px solid #4faeba' ,
115122 width : '45px' ,
116123 height : '45px' ,
117124 display : 'flex' ,
@@ -122,8 +129,8 @@ function Contacts() {
122129 flexShrink : 0 ,
123130 '&:hover' : {
124131 transform : 'scale(1.1)' ,
125- color : theme . secondary ,
126- backgroundColor : theme . tertiary ,
132+ color : '#667' ,
133+ backgroundColor : '#4faeba' ,
127134 } ,
128135 typoImpo : {
129136 color : theme . secondary ,
@@ -141,7 +148,7 @@ function Contacts() {
141148 style = { { backgroundColor : theme . secondary } }
142149 >
143150 < div className = 'contacts--container' >
144- < h1 style = { { color : theme . primary } } > Contacts</ h1 >
151+ < h1 > Contacts</ h1 >
145152 < div className = 'contacts-body' >
146153
147154 < div className = 'contacts-details' >
@@ -153,9 +160,10 @@ function Contacts() {
153160 < FiAtSign />
154161 </ div >
155162 < p >
156- { contactsData . email }
163+ { contactsData . email }
157164 </ p >
158165 </ a >
166+
159167 < a
160168 href = { `tel:${ contactsData . phone } ` }
161169 className = 'personal-details'
@@ -164,18 +172,27 @@ function Contacts() {
164172 < FiPhone />
165173 </ div >
166174 < p >
167- < a href = { `tel: ${ contactsData . phone } ` } > { contactsData . phone } </ a >
175+ { contactsData . phone }
168176 </ p >
169177 </ a >
170- < div className = 'personal-details' >
178+
179+ < a
180+ href = { `https://www.google.com/maps/place/${ contactsData . address } ` }
181+ className = 'personal-details'
182+ >
171183 < div className = { classes . detailsIcon } >
172184 < HiOutlineLocationMarker />
173185 </ div >
174186 < p >
175- < a href = { `https://www.google.com/maps/place/${ contactsData . address } ` } > Carrboro, NC</ a >
187+ { contactsData . address }
188+
176189 </ p >
177- </ div >
190+ </ a >
191+
192+
193+
178194
195+ { /* NEXT SECTION */ }
179196 < div className = 'socialmedia-icons' >
180197 { socialsData . github && (
181198 < a
@@ -252,13 +269,13 @@ function Contacts() {
252269 </ div >
253270 </ div >
254271 </ div >
255- { /* <div style={{color: theme.primary}} variant="body2" align="center">
272+ < footer style = { { color : theme . primary } } variant = "body2" align = "center" >
256273
257274 < a style = { { color : theme . primary } } href = "https://jonchristie.net/" >
258275 jonchristie.net
259276 </ a > { ' ©' } { new Date ( ) . getFullYear ( ) }
260277
261- </div> */ }
278+ </ footer >
262279 </ div >
263280
264281 </ div >
0 commit comments