privacy policy

This commit is contained in:
2025-06-05 19:42:08 +10:00
parent 8e90c6496f
commit afb46a5edd
4 changed files with 139 additions and 1 deletions

View File

@@ -8,7 +8,7 @@
<meta name="description" content="Litruv - Dev/Tech Artist at MatesMedia. Follow for coding, game development, and creative projects."> <meta name="description" content="Litruv - Dev/Tech Artist at MatesMedia. Follow for coding, game development, and creative projects.">
<meta name="author" content="Litruv"> <meta name="author" content="Litruv">
<meta http-equiv="Content-Security-Policy" content="script-src 'self'; connect-src https://public.api.bsky.app" unsafe-inline> <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'; connect-src https://public.api.bsky.app;">
<meta property="og:title" content="Litruv - Dev/Tech Artist"> <meta property="og:title" content="Litruv - Dev/Tech Artist">
<meta property="og:description" content="Dev/Tech Artist at MatesMedia. Follow for coding, game development, and creative projects."> <meta property="og:description" content="Dev/Tech Artist at MatesMedia. Follow for coding, game development, and creative projects.">
@@ -71,6 +71,9 @@
</header> </header>
<div id="posts"></div> <div id="posts"></div>
<footer>
<a href="privacy.html">Privacy Policy</a>
</footer>
</div> </div>
</body> </body>
</html> </html>

114
privacy.html Normal file
View File

@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Privacy Policy for Litruv's website and applications.">
<meta name="author" content="Litruv">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';">
<meta property="og:title" content="Privacy Policy - Litruv">
<meta property="og:description" content="Privacy Policy for Litruv's website and applications.">
<meta property="og:image" content="https://lit.ruv.wtf/banner.webp">
<meta property="og:url" content="https://lit.ruv.wtf/privacy.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Lit.ruv.wtf" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Privacy Policy - Litruv">
<meta name="twitter:description" content="Privacy Policy for Litruv's website and applications.">
<meta name="twitter:image" content="https://lit.ruv.wtf/banner.webp">
<meta name="twitter:url" content="https://lit.ruv.wtf/privacy.html">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/32.png">
<link rel="icon" type="image/png" sizes="48x48" href="/icons/48.png">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/180.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
<title>Privacy Policy - Litruv</title>
<style>
.privacy-content {
background: white;
padding: 1.5rem 2rem;
margin-top: 2rem;
border: 2px solid #000;
box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1), 6px 6px 0 rgba(0, 0, 0, 0.05);
color: #333;
text-align: left;
}
.privacy-content h1 {
text-align: center;
font-size: 1.8rem;
color: #242424;
text-shadow: 1px 1px 0 #ffffff52, 2px 2px 0 #00000080;
margin-bottom: 1.5rem;
}
.privacy-content h2 {
font-size: 1.3rem;
color: #242424;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
.privacy-content p {
line-height: 1.6;
margin-bottom: 1rem;
}
.privacy-content a {
color: #2563eb;
text-decoration: underline;
}
.privacy-content a:hover {
color: #1d4ed8;
}
</style>
</head>
<body>
<div class="bg-pattern"></div>
<div class="container">
<img src="avatar.webp" alt="Avatar" class="avatar-img" width="250" height="250">
<header>
<h1><a href="/">Litruv</a></h1>
<div class="subtext">Privacy Policy</div>
</header>
<div class="privacy-content">
<h1>Privacy Policy</h1>
<p>I respect your privacy.</p>
<h2>Apps</h2>
<p>My apps do not collect, store, or share any personal information. No analytics, no tracking, no funny business.</p>
<h2>Website</h2>
<p>This website may collect anonymous usage data (such as page views or general browser information) to help improve functionality and performance. This data is non-personal and cannot be used to identify you. I do not sell or share this data with third parties.</p>
<p>Additionally, this website uses Cloudflare for performance and security. Cloudflare may collect its own analytics and statistical data as per their <a href="https://www.cloudflare.com/privacypolicy/" target="_blank" rel="noopener noreferrer">privacy policy</a>.</p>
<p>By using this site, you agree to this policy.</p>
</div>
</div>
<script>
function getRandomRotation() {
// Returns a value between -1.5 and 1.5, similar to post rotation
return (Math.random() * 3) - 1.5;
}
document.addEventListener('DOMContentLoaded', function() {
const privacyBox = document.querySelector('.privacy-content');
if (privacyBox) {
privacyBox.style.transform = `rotate(${getRandomRotation()}deg)`;
// Optional: ensure transform origin is center if rotation looks off
// privacyBox.style.transformOrigin = 'center center';
}
});
</script>
</body>
</html>

View File

@@ -18,4 +18,9 @@
<lastmod>2025-02-09T22:00:52+00:00</lastmod> <lastmod>2025-02-09T22:00:52+00:00</lastmod>
<priority>0.80</priority> <priority>0.80</priority>
</url> </url>
<url>
<loc>https://lit.ruv.wtf/privacy.html</loc>
<lastmod>2025-02-09T22:00:52+00:00</lastmod> <!-- Consider updating this to the actual modification date -->
<priority>0.50</priority>
</url>
</urlset> </urlset>

View File

@@ -255,3 +255,19 @@ h1:hover {
color: white; color: white;
} }
footer {
text-align: center;
margin-top: 3rem;
margin-bottom: 2rem;
font-size: 0.9rem;
}
footer a {
color: #f0f0f0;
text-decoration: underline;
}
footer a:hover {
color: #2563eb;
}