Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 83 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,91 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./style.css" />
<title>Full Stack Portfolio</title>
</head>
<body>

<div class="container">
<div class="header">
<div class="name">
<h4>Mamadou Leye</h4>
</div>
<div class="menu">
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#experience">Experience</a></li>
</ul>
</div>
</div>
<div class="main">
<h1><p>Hiring A<br>Full-Stack<br>Developer?</p></h1>
<div class="sub-main">
I have experience with <span>React</span>, <span>NodeJs</span> and <span>Typescript</span>, I would love<br>to work at an innovative and eco-friendly start-up in the <span>sustainable energy sector</span>.
</div>
</div>
<div class="about-me">
<h3 id="about-me">ABOUT ME</h3>
<h6>Introduction</h6>
<p>
I'm a recent Cyber Security graduate with a deep passion for cybersecurity,<br>focusing on Security Analyst skills from Python and AWS to networking security.<br>In my own time, I've earned the Security+, AWS Essentials and CompTIA CySa+ certifications.<br> I am eager to contribute my SoC, Incident Management<br>and Cloud Service expertise to a forward-thinking organization<br>and leverage my love of learning to navigate the ever-evolving<br>challenges of the cyber security landscape.</p>
<h6>Technical Skills</h6>
<ul>
<li>HTML $ CSS</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>React</li>
<li>Redux</li>
<li>NodeJs</li>
</ul>
</div>
<div class="portfolio">
<h3 id="portfolio">PORTFOLIO</h3>
<div class="project-one">
<h4>Title</h4>
<p>
Directed the establishment of CyberBait Technology Solutions, focusing on developing its vision, digital infrastructure, and brand identity, emphasizing cybersecurity innovation.
</p>
<div class="read-more">READ MORE</div>
<div class="github">
<a href="https://github.com/homonoviscoding?tab=projects">GitHub Repo</a>
</div>
</div>
<div class="project-two">
<h4>Title</h4>
<p>
Directed the establishment of CyberBait Technology Solutions, focusing on developing its vision, digital infrastructure, and brand identity, emphasizing cybersecurity innovation.
</p>
<div class="read-more">READ MORE</div>
<div class="github">
<a href="https://github.com/homonoviscoding?tab=projects">GitHub Repo</a>
</div>
</div>
<div class="project-three">
<h4>Title</h4>
<p>
Directed the establishment of CyberBait Technology Solutions, focusing on developing its vision, digital infrastructure, and brand identity, emphasizing cybersecurity innovation.
</p>
<div class="read-more">READ MORE</div>
<div class="github">
<a href="https://github.com/homonoviscoding?tab=projects">GitHub Repo</a>
</div>
</div>
</div>
<div class="xperience">
<h3 id="experience">EXPERIENCE</h3>
<h6>Trading Assistant</h6>
<p>
The Trading Assistant at Intermarché is a key role responsible for various crucial aspects of the trading process. Played a vital role in managing stock levels, coordinating stock replenishment activities, ensuring accurate product labeling, and overseeing essential operational procedures. By efficiently managing inventory, analyzing sales trends, and optimizing stock turnover, I contributed significantly to the store's profitability. Additionally, my attention to detail and coordination skills ensured the store's smooth operations and reliable product deliveries, making me an essential asset to the organization.
</p>
<h6>Warehouse Operative</h6>
<p>
As a Warehouse Operative, I was responsible for picking, handling, and loading stock, I ensured the highest standards in receiving, storing, packing, and transporting goods. My focus on safety, efficiency, and attention to detail guarantees smooth operations and prompt handling of potential hazards, contributing to a seamless and reliable supply chain.
</p>
</div>
<div class="footer">
<h6>&#169 Mamadou Leye</h6>
</div>
</div>
</body>
</html>
59 changes: 59 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
* {
margin: 0;
/* box-sizing: border-box; */
font-family: Impact;
gap: 5px;
}
.container {
display: grid;
grid-template-areas:
'header header header'
'main main main'
'about-me about-me about-me'
'portfolio portfolio portfolio'
'xperience xperience xperience'
'footer footer footer'
;
grid-auto-flow: row;
height: 100vh;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 80px 1fr 0.6fr 0.8fr 0.8fr 40px;
}

.header {
display: grid;
grid-area: header;
background-color: bisque;
grid-template-columns:
'name menu'
;
grid-auto-flow: column;
}
.menu ul a {
list-style: none;
}

.main {
grid-area: main;
background-color: beige;
}

.about-me {
grid-area: about-me;
background-color: azure;
}

.portfolio {
grid-area: portfolio;
background-color: rgb(33, 194, 140);
}

.xperience {
grid-area: xperience;
background-color: aqua;
}

.footer {
grid-area: footer;
background-color: antiquewhite;
}