-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/projects' into develop
- Loading branch information
Showing
4 changed files
with
61 additions
and
3 deletions.
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,55 @@ | ||
<p>projects works!</p> | ||
<div class="my-10"> | ||
<h1 | ||
class="mb-10 text-2xl font-bold leading-[3rem] text-black md:text-4xl dark:text-white" | ||
> | ||
Some things I've built | ||
</h1> | ||
|
||
<ul> | ||
<li class="visible relative grid grid-cols-12 gap-2"> | ||
<div class="relative z-[1] col-[1_/-1] row-[1_/-1] lg:col-[7_/_-1]"> | ||
<div class="flex flex-col p-10 text-right lg:p-0"> | ||
<h2 | ||
class="mb-5 self-end text-2xl font-medium text-black lg:max-w-[70%] dark:text-white" | ||
> | ||
<a | ||
href="https://cartodd.francophonie.org/" | ||
target="_blank" | ||
rel="noopener" | ||
>Mapping of organizations working on the SDGs</a | ||
> | ||
</h2> | ||
<div class="dark:bg-secondary-dark rounded-md bg-white p-6"> | ||
<p> | ||
I built the frontend of the of this platform listing the | ||
organizations working on Sustainable Development Goals as | ||
identified by the Francophonie. | ||
</p> | ||
</div> | ||
<div class="my-5 flex justify-end space-x-4 text-sm"> | ||
<strong class="font-normal">Angular</strong> | ||
<strong class="font-normal">Open Layers</strong> | ||
<strong class="font-normal">Tailwind CSS</strong> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="relative col-[1_/-1] row-[1_/-1] lg:col-[1_/_8]"> | ||
<a | ||
href="https://cartodd.francophonie.org/" | ||
target="_blank" | ||
rel="noopener" | ||
class="group relative flex overflow-hidden rounded-md" | ||
> | ||
<img | ||
src="/assets/images/screenshots/ifdd.png" | ||
alt="Mapping of organizations working on the SDGs" | ||
/> | ||
<div | ||
aria-hidden="true" | ||
class="dark:bg-dark absolute bottom-0 left-0 right-0 top-0 bg-white bg-opacity-70 filter transition-all duration-300 ease-in-out group-hover:-translate-y-full dark:bg-opacity-90 lg:dark:bg-opacity-50" | ||
></div> | ||
</a> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> |