mirror of
https://github.com/Lissy93/awesome-privacy.git
synced 2026-03-11 08:55:33 +00:00
Add placeholder for about page
This commit is contained in:
parent
2065c87dc5
commit
3d9c8a8306
1 changed files with 98 additions and 0 deletions
98
web/src/pages/about.astro
Normal file
98
web/src/pages/about.astro
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
---
|
||||
|
||||
import Layout from '@layouts/Layout.astro';
|
||||
import Main from '@components/scafold/MainCard.astro';
|
||||
|
||||
---
|
||||
|
||||
<Layout title="Awesome Privacy">
|
||||
<Main>
|
||||
<h2>Objective</h2>
|
||||
<p>
|
||||
Large data-hungry corporations dominate the digital world but with little,
|
||||
or no respect for your privacy.
|
||||
We believe that privacy is a fundamental human right and that it should be protected.
|
||||
<br /><br />
|
||||
Migrating to open-source applications and those with a strong emphasis on
|
||||
privacy & security will help safegaurd you from corporations,
|
||||
governments, and hackers who log, store or sell your sensetive personal data.
|
||||
<br /><br />
|
||||
Awesome Privacy is a directory of alternative software which respects your privacy.
|
||||
<br /><br />
|
||||
|
||||
</p>
|
||||
<hr />
|
||||
|
||||
<h2>Contributing</h2>
|
||||
<p>
|
||||
Awesome Privacy (including all data and code) is fully open source,
|
||||
maintained by a core group of volenteers, with a lot of help from the community.
|
||||
<br /><br />
|
||||
We welcome suggestions, additions, edits and removals to the list.
|
||||
It's thanks to contributors like you that this project is possible 💜
|
||||
<br /><br />
|
||||
To get started, head over to our GitHub repository.
|
||||
From here, you'll be able to edit <a href="#"><code>awesome-privacy.yml</code></a>
|
||||
where all data is stored, and then submit your changes as a pull request.
|
||||
<br /><br />
|
||||
You can find further details on the repo.
|
||||
Be sure to check the contributing guidelines before submitting a PR or issue,
|
||||
and ensure you're following our Code of Conduct.
|
||||
</p>
|
||||
<hr />
|
||||
|
||||
<h2>Credits</h2>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
|
||||
eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
|
||||
sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
</p>
|
||||
<hr />
|
||||
|
||||
<h2>Author</h2>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
|
||||
eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
|
||||
sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
</p>
|
||||
<hr />
|
||||
|
||||
<h2>License</h2>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
|
||||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
|
||||
eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
|
||||
sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
</p>
|
||||
|
||||
</Main>
|
||||
</Layout>
|
||||
|
||||
<style lang="scss">
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
margin: 2rem 0 1rem 0;
|
||||
}
|
||||
p {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
hr {
|
||||
margin: 2rem 0;
|
||||
border: 0;
|
||||
border-top: 2px solid var(--accent);
|
||||
&:nth-child(6) {
|
||||
border-color: var(--accent-3);
|
||||
}
|
||||
&:nth-child(9) {
|
||||
border-color: var(--accent-2);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in a new issue