-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from SpaceyaTech/new-resources-page-build
New resources page build
- Loading branch information
Showing
14 changed files
with
615 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
import { earth_moon } from "../../../../assets/images/resources-page"; | ||
|
||
const HeroSection = () => { | ||
return ( | ||
<div className="bg-[#E5EFEC] py-9 px-6 border-[0.5px] border-solid border-[#00664E] rounded-2xl relative md:mb-24 xl:mb-28 mb-0"> | ||
<div className="flex flex-col gap-2 md:w-2/5 w-full "> | ||
<h5 className="text-xl text-[#009975] font-normal">Resources</h5> | ||
|
||
<h3 className="md:text-3xl text-xl md:leading-[46px] leading-9 font-medium"> | ||
Discover{" "} | ||
<span className="text-[#009975]">tech tools and resources</span> to | ||
boost your productivity | ||
</h3> | ||
<p className="md:mb-10 md:text-base text-sm font-normal"> | ||
Master the art of tech with our expert guides, tutorials, and | ||
step-by-step instructions to help you develop proficiency and | ||
confidence in the world of technology. | ||
</p> | ||
</div> | ||
|
||
<img | ||
src={earth_moon} | ||
alt="earth & moon" | ||
className="absolute md:right-12 right-8 -top-16 md:-top-32 lg:-top-40 object-contain w-32 md:w-96 lg:w-fit md:z-10" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HeroSection; | ||
import React from "react"; | ||
|
||
import { earthMoon } from "../../../../assets/images/resources-page"; | ||
|
||
function HeroSection() { | ||
return ( | ||
<div className="bg-[#E5EFEC] py-9 px-6 border-[0.5px] border-solid border-[#00664E] rounded-2xl relative md:mb-20 lg:mb-24 xl:mb-28 mb-0"> | ||
<div className="flex flex-col gap-2 md:w-2/5 w-full "> | ||
<h5 className="text-xl text-[#009975] font-normal">Resources</h5> | ||
|
||
<h3 className="md:text-3xl text-xl md:leading-[46px] leading-9 font-medium"> | ||
Discover{" "} | ||
<span className="text-[#009975]">tech tools and resources</span> | ||
to boost your productivity | ||
</h3> | ||
<p className="md:mb-10 md:text-base text-sm font-normal"> | ||
Master the art of tech with our expert guides, tutorials, and | ||
step-by-step instructions to help you develop proficiency and | ||
confidence in the world of technology. | ||
</p> | ||
</div> | ||
|
||
<img | ||
src={earthMoon} | ||
alt="earth & moon" | ||
className="absolute md:right-12 right-8 -top-16 md:-top-32 lg:-top-40 object-contain w-32 md:w-96 lg:w-fit md:z-10" | ||
/> | ||
</div> | ||
); | ||
} | ||
|
||
export default HeroSection; |
Oops, something went wrong.