-
Notifications
You must be signed in to change notification settings - Fork 0
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
267c44f
commit ef15e97
Showing
5 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -61,13 +61,41 @@ const cards = [ | |
</div> | ||
</div> | ||
|
||
<h1 class=" w-full my-[5%] font-black text-6xl text-center">Projets à la une !</h1> | ||
|
||
<div id="projectHighlight" class="overflow-visible flex w-full h-screen typo-rubik flex-wrap justify-around"> | ||
|
||
{cards.map(currentCard => ( | ||
<Card title={currentCard.title} description={currentCard.body} href={currentCard.href} thumbnail={currentCard.thumbnail} techno={currentCard.techno}></Card> | ||
))} | ||
</div> | ||
|
||
<h1 class=" w-full my-[5%] font-black text-6xl text-center">Contact</h1> | ||
|
||
<div id="contact"> | ||
<div id="contact" class="overflow-visible w-full h-screen typo-rubik relative"> | ||
|
||
<div class=" w-[40%] ml-[40%] h-full flex flex-col justify-center overflow-visible"> | ||
|
||
<a href="https://github.com/math-pixel" class=" flex"> | ||
<img alt="icon de github" src="/images/github icon.png" class=" w-[20%]"> | ||
<h1 class=" m-6 my-auto font-bold text-5xl text-center">GitHub</h1> | ||
</a> | ||
|
||
<a href="mailto:[email protected]" class=" flex"> | ||
<img alt="icon de mail" src="/images/mail icon.png" class=" w-[20%]"> | ||
<h1 class=" m-6 my-auto font-bold text-5xl text-center">Mail</h1> | ||
</a> | ||
|
||
<a href="https://www.linkedin.com/in/mathieu-chavanel-50488b251/" class=" flex"> | ||
<img alt="icon de linkedin" src="/images/linkedin icon.png" class=" w-[20%]"> | ||
<h1 class=" m-6 my-auto font-bold text-5xl text-center">Linkedin</h1> | ||
</a> | ||
|
||
</div> | ||
|
||
<img src="/images/toto.png" alt="" class="w-[20%] absolute top-[2%] left-[8%] rounded-xl"> | ||
<img src="/images/toto.png" alt="" class="w-[20%] absolute bottom-[2%] right-[8%] rounded-xl"> | ||
|
||
</div> | ||
|
||
</LayoutPage> | ||
|