File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,9 @@ import {
16
16
useMediaQuery ,
17
17
useTheme
18
18
} from "@mui/material" ;
19
+ import MailIcon from "@mui/icons-material/mail" ;
19
20
import React from "react" ;
20
- import { KeyboardArrowRight } from "@mui/icons-material" ;
21
+ import { KeyboardArrowRight , MailOutline } from "@mui/icons-material" ;
21
22
import { WindowCard } from "../WindowCard/WindowCard.jsx" ;
22
23
import { Masonry } from "@mui/lab" ;
23
24
import HackHPIWrapper from "../Theme/HackHPIWrapper.jsx" ;
@@ -160,7 +161,7 @@ export function Faq() {
160
161
ask!</ Typography >
161
162
</ CardContent >
162
163
< CardActions >
163
- < Button size = "small" color = { "inherit" } href = { "mailto:[email protected] " } > Contact us
</ Button >
164
+ < Button sx = { { ml : 1 , mb : 1 } } variant = "contained" size = "small" color = "primary" href = { "mailto:[email protected] " } startIcon = { < MailOutline /> } > Contact us
</ Button >
164
165
</ CardActions >
165
166
</ Card >
166
167
</ Stack >
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export function Gallery() {
61
61
{ renderImages ( secondImages , - 150 ) }
62
62
{ renderImages ( thirdImages , - 200 ) }
63
63
< Container sx = { { display : "flex" , justifyContent : "flex-end" } } >
64
- < Button color = { "inherit " } sx = { { mt : 3 } } onClick = { ( ) => setIsGalleryOpen ( true ) } > View full Gallery</ Button >
64
+ < Button variant = "contained" color = { "primary " } sx = { { mt : 3 } } onClick = { ( ) => setIsGalleryOpen ( true ) } > View full Gallery</ Button >
65
65
</ Container >
66
66
< GalleryDialog isOpen = { isGalleryOpen } onClose = { ( ) => setIsGalleryOpen ( false ) } />
67
67
</ Box >
You can’t perform that action at this time.
0 commit comments