Skip to content

Commit

Permalink
Add about page content
Browse files Browse the repository at this point in the history
  • Loading branch information
printerscanner committed Apr 3, 2024
1 parent 4452f58 commit a84c000
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Fetch GitHub Data

on:
schedule:
- cron: '0 0 * * *' # Run every day at midnight UTC
- cron: '23 2 * * 1'

jobs:
fetch-data:
Expand Down
11 changes: 9 additions & 2 deletions src/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,18 @@ p {
display: flex;
flex-direction: column;
align-items: center;
max-width: 900px;
max-width: 650px;
margin: auto;
margin-top: 2rem;
margin-bottom: 5rem;
margin-top: 3rem;
min-height: 70vh; /* TODO: Remove when About page gets longer */
}

@media only screen and (max-width: 1000px) {
.main {
margin: auto 20px;
}
}

/* Misc Pages CSS */

Expand Down
11 changes: 10 additions & 1 deletion src/pages/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@ function About() {
};

return (
<div className="main About">
<div className="main">
<ColorPicker onColorChange={handleColorChange} />
<h1
style={{
color: textColor,
}}>About</h1>
<p>Mother Type is an open source type foundry.</p>
<p>We are committed to making type design more accessible, and all our typefaces are available for use, distribution and collaboration via the <a href="https://openfontlicense.org">SIL Open Font License (OFL)</a>. With this license, everyone is free to use, modify, and distribute our typefaces. We ask you credit the designer and foundry when using our typefaces.</p>

<p>Our typefaces are shared and distributed via the <a href="https://github.com/mother-type/Unified-Font-Repository">Unified Font Repository</a>. These repositories also serve as the Content Management System for this website. Change or update the typefaces repository, and the site will change with it. This sites main function is as a visual directory of updatable fonts, which will provide the user with the most up-to-date version of a typeface at any time, and hopefully, avenues for collaboration.</p>
<h2
style={{
color: textColor,
}}>Submissions</h2>
<p>If you would like to submit a font, email us at <a href="mailto:[email protected]">[email protected]</a>, or make a fork of the <a href="https://github.com/mother-type/Unified-Font-Repository">Unified Font Repository</a> on Github.</p>

</div>

);
Expand Down

0 comments on commit a84c000

Please sign in to comment.