added all sections as per mockup.Up next: refactoring and cleanup

This commit is contained in:
Tommy
2022-01-04 23:24:14 +00:00
committed by vidvidvid
parent 2bfcebc274
commit 755a91a10a
2 changed files with 7 additions and 3 deletions

View File

@@ -51,8 +51,8 @@ function Intro() {
bgPosition="center"
bgSize="cover"
backgroundImage={`url(${CardBackground})`}
bgPosition="center"
bgSize="cover"
width="33%"
display="flex"
alignItems="center"
@@ -76,7 +76,8 @@ function Intro() {
</Box>
</Box>
<Box
bgPosition="center"
bgSize="cover"
backgroundImage={`url(${CardBackground})`}
bgPosition="center"
bgSize="cover"

View File

@@ -11,6 +11,7 @@ import Optimal from '../components/Landing/Optimal';
import Unplug from '../components/Landing/Unplug';
import Who from '../components/Landing/Who';
import JustWatch from '../components/Landing/JustWatch';
import Cards from '../components/Landing/Cards';
function Landing(): JSX.Element {
return <div>
@@ -25,7 +26,9 @@ function Landing(): JSX.Element {
<Optimal />#
<Unplug />
<Who />
<Cards />
<JustWatch />
</div>;
}