added welcome page + image

This commit is contained in:
Sebastian
2022-02-03 19:25:32 -07:00
parent f065f79c10
commit 97d69d0756
4 changed files with 19 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
+11
View File
@@ -0,0 +1,11 @@
import React from 'react'
const WelcomePage = () => {
return (
<div class='center'>
<img src = "/WelcomePageImage.webp"/>
</div>
)
}
export default WelcomePage