-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d4e1de
commit 97cd48d
Showing
6 changed files
with
45 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,19 @@ import { Box, Typography, useTheme, Link } from '@mui/material'; | |
import { color, h6_, titleColor } from '@/constants'; | ||
|
||
import Logo from './Logo'; | ||
import { margin } from '@mui/system'; | ||
|
||
export default function AMCSection() { | ||
return ( | ||
<Box | ||
color={color} | ||
alignItems="center" | ||
height="80vh" | ||
minHeight="80vh" | ||
display="flex" | ||
flexDirection="column" | ||
justifyContent="center" | ||
> | ||
<Logo></Logo> | ||
<Logo /> | ||
{/* <Typography variant="h1" fontSize="11vw"> | ||
Aero | ||
</Typography> | ||
|
@@ -27,39 +28,41 @@ export default function AMCSection() { | |
{/* <Typography fontSize="2vw" mb="4vw"> | ||
IIT (BHU) Varanasi | ||
</Typography> */} | ||
<Link | ||
href="mailto:[email protected]" | ||
sx={{ | ||
textDecoration: 'none', | ||
'&:hover': { | ||
cursor: 'pointer', | ||
}, | ||
}} | ||
> | ||
<Typography | ||
variant="h2" | ||
fontSize={h6_} | ||
borderRadius="1.3em" | ||
padding="0.93em 3.33em" | ||
display="inline-block" | ||
<Box sx={{ margin: '30px' }}> | ||
<Link | ||
href="mailto:[email protected]" | ||
sx={{ | ||
borderStyle: 'solid', | ||
borderColor: 'rgba(255,255,255,1)', | ||
borderWidth: '2px', | ||
color: 'rgba(255,255,255,1)', | ||
backgroundColor: 'transparent', | ||
textDecoration: 'none', | ||
'&:hover': { | ||
color: color, | ||
backgroundColor: titleColor, | ||
borderColor: titleColor, | ||
cursor: 'pointer', | ||
}, | ||
transition: | ||
'0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95)', | ||
}} | ||
> | ||
Contact us | ||
</Typography> | ||
</Link> | ||
<Typography | ||
variant="h2" | ||
fontSize={h6_} | ||
borderRadius="1.3em" | ||
padding="0.93em 3.33em" | ||
display="inline-block" | ||
sx={{ | ||
borderStyle: 'solid', | ||
borderColor: 'rgba(255,255,255,1)', | ||
borderWidth: '2px', | ||
color: 'rgba(255,255,255,1)', | ||
backgroundColor: 'transparent', | ||
'&:hover': { | ||
color: color, | ||
backgroundColor: titleColor, | ||
borderColor: titleColor, | ||
}, | ||
transition: | ||
'0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95)', | ||
}} | ||
> | ||
Contact us | ||
</Typography> | ||
</Link> | ||
</Box> | ||
</Box> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ export const social: Social = { | |
}; | ||
|
||
export const contactInfo = [ | ||
'Vivekananda Common Room, Vivekananda Hostel, IIT (BHU), Varanasi - 221005', | ||
'CV Raman Common Room, CV Raman Hostel, IIT (BHU), Varanasi - 221005', | ||
'[email protected]', | ||
'[email protected]', | ||
// '[email protected]', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters