This commit is contained in:
2023-11-05 17:18:01 -07:00
parent 91acf7564c
commit edda12e2ae
18 changed files with 118 additions and 66 deletions

View File

@@ -24,7 +24,7 @@ const Landing = () => {
primary={"I'll be brief: Aspiring SWE whose passions lie in cloud technologies,\
web development and machine learning, but open to much more."} />
</ListItem>
{/* intro with education */}
{/* education, for now */}
<ListItem>
<ListItemText
primary={"I'm currently pursuing my masters in computer\
@@ -42,18 +42,15 @@ const Landing = () => {
experiencesData.filter(exp => exp.type === 'prof')[0].location + " as a " +
experiencesData.filter(exp => exp.type === 'prof')[0].designation + "."} />
</ListItem>
{/* last stint */}
<ListItem>
<ListItemText
primary={"Yes it's a simple website :)"} />
</ListItem>
</List>
<Divider />
<Button
size="large"
variant="outlined"
onClick={() => handleLinkClick(process.env.PUBLIC_URL + "myresume.pdf")}
>
My Resume
</Button>
<Divider />
<Typography paragraph>
Reach me at:
<Typography paragraph p={1}>
More at:
</Typography>
<ButtonGroup
size="large"

View File

@@ -0,0 +1,14 @@
import { Typography } from '@mui/material';
import React from 'react'
const UnderConstruction = () => {
return (
<>
<Typography variant="h4">
I really have to finish this...
</Typography>
</>
)
}
export default UnderConstruction;