updated Greeter

This commit is contained in:
Warwick 2022-03-30 12:19:52 +01:00
parent 15bdaaa766
commit 6a69b6c4b5
2 changed files with 4 additions and 27 deletions

View file

@ -30,26 +30,6 @@ class Greeting extends Component {
>
<VideoPlayer />
</div>
{/*<video
autoPlay
muted
loop
style={{
position: "absolute",
width: "100%",
left: "50%",
right: "50%",
top: "25%",
height: "50%",
objectFit: "cover",
transform: "translate(-50%,-50%)",
zIndex: "-2",
}}
//width="100%"
//height="315"
>
<source src={PortfolioVideo} type="video/mp4" />
</video>*/}
<Container
maxWidth="sm"
style={{
@ -61,15 +41,11 @@ class Greeting extends Component {
<CardContent>
<Typography variant="h1">Welcome</Typography>
<Typography variant="body1">
Hi, My name is Warwick and I'm a Fullstack Web Developer with an
Hi, My name is Warwick and I'm an Associate Lecturer in
computing at the Games Academy in Falmouth University with an
academeic background in Computing for Games and
Entrepreneurship.
</Typography>
<Typography variant="subtitle1">Availability</Typography>
<Typography variant="body2">
I'm currently looking for work if you think my skills may be
relevant to you. My CV and previous projects can be found below.
</Typography>
</CardContent>
<CardActions>
<Button href={CV} color="secondary">

View file

@ -11,10 +11,11 @@ class Home extends Component {
<span>
<Header />
<Greeting />
<div style={{ "margin-top": "8em" }} />
<GameProjects />
<Container maxWidth="md">
<WebProjects />
</Container>
<GameProjects />
</span>
);
}