Skip to content

Commit

Permalink
Show and display the Laudiolin logo
Browse files Browse the repository at this point in the history
  • Loading branch information
KingRainbow44 committed Sep 10, 2023
1 parent b662aaa commit 67330f1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Binary file added public/laudiolin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/css/pages/LandingPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@
@apply w-full h-full;
}

.LandingPage_Image {
@apply absolute;

width: 384px;
height: 384px;

left: 10%;

background: var(--bg-color);

border-radius: 100%;
align-self: center;
}

.LandingPage_TextContainer {
@apply flex flex-col;

Expand Down Expand Up @@ -55,6 +69,15 @@
}

@media screen and (max-width: 1200px) {
.LandingPage_Image {
display: none;
}

.LandingPage_Container {
@apply flex flex-col justify-center items-center;
@apply w-full h-full p-0;
}

.LandingPage_Segment {
background-size: cover !important;
background-repeat: no-repeat !important;
Expand Down
6 changes: 6 additions & 0 deletions src/ui/pages/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ function Laudiolin() {
<div className={"LandingPage_Container"}
style={{ background: "linear-gradient(90deg, transparent, #4d7bd6)" }}
>
<img
className={"LandingPage_Image"}
src={"laudiolin.png"}
alt={"Laudiolin"}
/>

<div className={"LandingPage_TextContainer"}
style={{ alignItems: "end", textAlign: "end", marginLeft: "50%" }}
>
Expand Down

0 comments on commit 67330f1

Please sign in to comment.