feat(homePage): banner mostly complete and 2 hour challenge complete, most of page sort of done

This commit is contained in:
2025-03-08 12:04:06 -07:00
parent ce9202d1a8
commit cf71002168
3 changed files with 169 additions and 0 deletions

45
src/Home/Home.css Normal file
View File

@ -0,0 +1,45 @@
#HomeTop {
display: flex;
position: relative;
justify-content: end;
align-items: center;
}
#HomeTop img {
height: 76svh;
width: 100%;
background-image: url(https://picsum.photos/200);
background-size: cover;
background-position: center;
position: absolute;
z-index: 0;
}
#HomeTop div {
display: flex;
flex-direction: column;
position: absolute;
z-index: 1;
margin-right: 25svw;
margin-bottom: 25svh;
}
#HomeTop div h1 {
margin: 0px;
}
#HomeTop div h2 {
}
#HomePageLayout div {
display: flex;
}
#HomePageLayout div div {
display: flex;
flex-direction: column;
}