This commit is contained in:
karimaldeen 2024-09-10 20:51:38 +03:00
parent 2fb9a217c2
commit 78fcb7c23d
4 changed files with 9366 additions and 6841 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 927 KiB

View File

@ -27,8 +27,8 @@ const HeroSection = ({data, isLoading}:THeaderPage) => {
</div> </div>
<div className="main_text_section"> <div className="main_text_section">
<div> <div className="Words">
<img src="/Home/HeroBorder.svg" alt="hero_image" /> {/* <img src="/Home/HeroBorder.svg" alt="hero_image" /> */}
<h1>{t("WE")}</h1> <h1>{t("WE")}</h1>
<h1>{t("DEVELOP")}</h1> <h1>{t("DEVELOP")}</h1>
<h1>{t("EDUCATION APPLICATIONS")}</h1> <h1>{t("EDUCATION APPLICATIONS")}</h1>

View File

@ -5,9 +5,15 @@
background: #000; background: #000;
border-bottom: 1px solid var(--white); border-bottom: 1px solid var(--white);
padding-bottom: 120px; padding-bottom: 120px;
min-height: 90vh;
// display: flex;
// align-items: center;
align-items: center;
&::after{ &::after{
width: 100%; width: 100%;
height: 100%; height: 100%;
top: 0;
left: 0;
content: ""; content: "";
position: absolute; position: absolute;
background-image: url('/public/Home/HeroBg.png'); background-image: url('/public/Home/HeroBg.png');
@ -81,19 +87,13 @@
z-index: 999 !important; z-index: 999 !important;
color: var(--white); color: var(--white);
position: relative; position: relative;
img{
position: absolute;
top: 80px;
width: 13vw;
}
h1{ h1{
margin-left: 8vw; margin-left: 8vw;
font-size:3.8vw; font-size:3.8vw;
font-weight: bold; font-weight: bold;
z-index: 9999 !important; z-index: 9999 !important;
&:nth-child(2){
padding-top: 13.5vw;
}
} }
.bottom_text_container{ .bottom_text_container{
z-index: 9999; z-index: 9999;
@ -138,9 +138,7 @@
h1{ h1{
margin-left:14vw; margin-left:14vw;
font-size:4.8vw; font-size:4.8vw;
&:nth-child(2){
padding-top: 18vw;
}
} }
.bottom_text_container{ .bottom_text_container{
// margin-left: 20vw; // margin-left: 20vw;
@ -203,9 +201,7 @@
h1{ h1{
margin-left: 65px; margin-left: 65px;
font-size:15px; font-size:15px;
&:nth-child(2){
padding-top: 80px;
}
} }
.bottom_text_container{ .bottom_text_container{
width: 100%; width: 100%;
@ -224,3 +220,18 @@
} }
} }
.Words{
// background-color: red;
position: relative;
&::after{
position: absolute;
top: 0;
left: 0;
content: "";
width: 10%;
height: 100%;
background: green;
}
}