-
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
Showing
15 changed files
with
100 additions
and
234 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
@import "tailwindcss/components"; | ||
@import "tailwindcss/utilities"; | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap'); | ||
|
||
/* This file is for your main application CSS */ |
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,9 +1,9 @@ | ||
defmodule MakerPassportWeb.PageController do | ||
use MakerPassportWeb, :controller | ||
|
||
def home(conn, _params) do | ||
def about(conn, _params) do | ||
# The home page is often custom made, | ||
# so skip the default app layout. | ||
render(conn, :home, layout: false) | ||
render(conn, :about, layout: false) | ||
end | ||
end |
31 changes: 31 additions & 0 deletions
31
lib/maker_passport_web/controllers/page_html/about.html.heex
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,31 @@ | ||
<div class="prose mx-auto py-10 text-gray-800"> | ||
<h1 class="text-gray-600"> | ||
About the Maker Passport platform | ||
</h1> | ||
<p> | ||
This platform is designed to help makers showcase their profiles, skills, and certifications (with issuance details and digital badges), location, and links to personal or professional websites, social media accounts, and projects. | ||
</p> | ||
<p> | ||
This platform aims to connect makers with potential collaborators or clients based on their skills, certifications, and location. | ||
</p> | ||
|
||
<hr class="border border-primary opacity-25 w-75 mx-auto mt-4 mb-3" /> | ||
<h2 class="text-gray-600">Support</h2> | ||
<p>This project was made possible thorugh the generous support of:</p> | ||
<div class="flex flex-col md:flex-row items-center"> | ||
<.link href="https://www.risa-fund.org" target="_blank" rel="noreferrer" class="flex-1"> | ||
<img | ||
alt="Logo of The Research and Innovation Systems for Africa (RISA) Fund" | ||
src="/images/RISA-logo.png" | ||
class="h-32 my-0" | ||
/> | ||
</.link> | ||
<div class="flex-1"> | ||
<img | ||
alt="Logo of the Next Generation Internet Data Portability and Services Incubator" | ||
src="/images/UKID-logo.png" | ||
class="h-32 my-0" | ||
/> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.