-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
014c91b
commit 77660bb
Showing
3 changed files
with
34 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
import Image from 'next/image'; | ||
import Moonbami from '@public/assets/images/moonbami.jpeg'; | ||
import Galaxy_Background from '@public/assets/images/vector-galaxy-background.jpg'; | ||
|
||
const Landing = () => { | ||
return ( | ||
<section id="profile" className="profile-section h-[55rem] flex flex-wrap justify-center items-center gap-x-[25rem] py-0 px-[100px]"> | ||
<Image className="absolute right-0 z-[-1] w-full h-full object-cover opacity-30" src={ Galaxy_Background } alt="Gradient galaxy background"/> | ||
<div className="description text-white"> | ||
<h1 className="text-8xl font-bold tracking-[-0.96px] pb-8">Hey there!</h1> | ||
<p className="w-[37.5rem] text-xl font-normal leading-7 ">My name is <strong className="landing-strong">Moonbami</strong>, and I am currently pursuing a career for being a <strong className="landing-strong">full-stack web developer</strong>. I am still a novice, but I am making <strong className="landing-strong">progress and learning</strong> on a daily basis.</p> | ||
</div> | ||
<div className="display-profile relative"> | ||
<div className="square-holder"></div> | ||
<Image className="w-[21.875rem] h-[21.875rem] border-[3px] border-solid border-white rounded-lg" src={ Moonbami } alt="Jam Moonbami" /> | ||
</div> | ||
</section> | ||
) | ||
} | ||
|
||
export default Landing; |
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