This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
-
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
Showing
2 changed files
with
144 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Privacy Policy - Jazza</title> | ||
|
||
<meta property="og:title" content="Jazza.dev" /> | ||
<meta property="og:description" content="My personal website!" /> | ||
<meta property="og:image" content="https://jazza.dev/bitmoji.png" /> | ||
<meta property="og:url" content="https://jazza.dev" /> | ||
<meta property="og:type" content="website" /> | ||
|
||
<link rel="stylesheet" href="style.css" /> | ||
<link rel="stylesheet" href="/common.css" /> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body> | ||
<header> | ||
<ul class="header-text-items"> | ||
<li id="home"> | ||
<a href="/">Home</a> | ||
</li> | ||
<li id="projects"> | ||
<a href="/projects/"> | ||
Projects | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
id="angle-down" | ||
> | ||
<path | ||
d="M17,9.17a1,1,0,0,0-1.41,0L12,12.71,8.46,9.17a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l4.24,4.24a1,1,0,0,0,1.42,0L17,10.59A1,1,0,0,0,17,9.17Z" | ||
></path> | ||
</svg> | ||
</a> | ||
<div class="dropdown projects-dropdown"> | ||
<a href="/projects/website/">This website</a> | ||
<a href="/projects/sa/">Scratch Addons</a> | ||
<a href="/projects/mediascout/">MediaScout</a> | ||
<a href="/projects/mobile/">Scratch mobile</a> | ||
</div> | ||
</li> | ||
<li id="links"> | ||
<a href="/links">Links</a> | ||
</li> | ||
<li id="posts"> | ||
<a href="/posts/">Posts</a> | ||
</li> | ||
</ul> | ||
</header> | ||
|
||
<main> | ||
<section class="privacy-policy"> | ||
<h1>Privacy Policy</h1> | ||
<p> | ||
At jazza.dev, your privacy is a priority. This website does not | ||
collect, store, or share any personal data from visitors. Below | ||
is a breakdown of how we handle your privacy. | ||
</p> | ||
<h2>Information Collection</h2> | ||
<p> | ||
<strong>No Personal Data Collection:</strong> We do not collect, | ||
process, or store any personal information, including names, | ||
email addresses, or IP addresses. | ||
</p> | ||
<h2>Third-Party Services</h2> | ||
<p> | ||
<strong>Ads:</strong> This website may display ads through | ||
third-party providers like Ezoic, who may use cookies or similar | ||
technologies to deliver relevant advertisements. Any data | ||
collected by these third-party providers is governed by their | ||
respective privacy policies, not by jazza.dev. For more | ||
information about how Ezoic handles data, please refer to their | ||
privacy policy. | ||
</p> | ||
<h2>Cookies</h2> | ||
<p> | ||
<strong>No Cookies:</strong> jazza.dev does not use cookies for | ||
tracking purposes. However, third-party services like Ezoic may | ||
use cookies as part of their advertising services. | ||
</p> | ||
<h2>External Links</h2> | ||
<p> | ||
This website contains links to external websites. We are not | ||
responsible for the privacy practices or content of these | ||
external sites. Please review their respective privacy policies | ||
when visiting their websites. | ||
</p> | ||
<h2>Changes to This Privacy Policy</h2> | ||
<p> | ||
We may update this policy from time to time. Any changes will be | ||
reflected on this page, and we encourage you to review it | ||
periodically. | ||
</p> | ||
<p> | ||
If you have any questions or concerns about this privacy policy, | ||
please contact us via the information provided on the website. | ||
</p> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<div class="footer-text">© 2024 Jazza. All rights reserved.</div> | ||
<div class="made-with-love">Made with ❤️❤️ in Australia by Jazza.</div> | ||
</footer> | ||
|
||
<script src="/headerMargin.js"></script> | ||
</body> | ||
</html> |
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,24 @@ | ||
@import url(variables.css); | ||
|
||
.privacy-policy { | ||
max-width: 60rem; | ||
margin: 2rem auto; | ||
padding: 1rem; | ||
font-size: 1.2rem; | ||
} | ||
|
||
.privacy-policy h1 { | ||
font-size: 2.5rem; | ||
text-align: center; | ||
} | ||
|
||
.privacy-policy h2 { | ||
margin-top: 2rem; | ||
font-size: 1.8rem; | ||
} | ||
|
||
.privacy-policy p { | ||
margin-bottom: 1.2rem; | ||
line-height: 1.6; | ||
color: var(--color-text-secondary); | ||
} |