-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
78 lines (66 loc) · 3.2 KB
/
privacy.html
File metadata and controls
78 lines (66 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | ShapeMaster</title>
<link rel="stylesheet" href="style.css">
<style>
.content-page { padding: 60px 0; }
.content-card { background: var(--white); border: var(--border); box-shadow: var(--shadow); padding: 40px; }
.content-card h2 { font-size: 48px; margin-bottom: 20px; }
.content-card p { margin-bottom: 20px; }
.content-card ul { margin-bottom: 20px; padding-left: 20px; }
.content-card li { margin-bottom: 10px; }
</style>
</head>
<body>
<nav>
<div class="container">
<a href="index.html" class="logo">SHAPE MASTER</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="index.html#features">Features</a>
<a href="../index.html" class="btn btn-sm" style="font-size: 14px; padding: 5px 15px;">PLAY NOW</a>
</div>
</div>
</nav>
<main class="content-page grid-bg">
<div class="container">
<div class="content-card">
<h2>PRIVACY POLICY</h2>
<p><strong>Last Updated: April 21, 2026</strong></p>
<p>Welcome to ShapeMaster. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your information when you use our web application and website.</p>
<h3>1. Information We Collect</h3>
<p>ShapeMaster is designed to be a privacy-first application. We collect minimal data:</p>
<ul>
<li><strong>Player Name:</strong> For local storage and display within the game.</li>
<li><strong>Game Progress:</strong> Level scores, stars, and Blitz mode high scores are stored locally on your device.</li>
<li><strong>Usage Data:</strong> We may collect anonymous analytics to improve the app performance.</li>
</ul>
<h3>2. How We Use Information</h3>
<p>The information we collect is used solely to enhance your gaming experience, specifically to track your progress and provide feedback on your shape-drawing precision.</p>
<h3>3. Data Storage</h3>
<p>Most of your data (scores, name) is stored locally using Web Storage (localStorage). We do not store your drawing strokes on our servers; the image processing happens entirely on your device.</p>
<h3>4. Third-Party Services</h3>
<p>We do not sell, trade, or otherwise transfer your information to outside parties. We do not use third-party advertising or tracking that identifies you.</p>
<h3>5. Consent</h3>
<p>By using ShapeMaster, you consent to our Privacy Policy.</p>
<h3>6. Contact Us</h3>
<p>If you have any questions regarding this policy, you may reach out to the ShapeMaster Studio team.</p>
<a href="index.html" class="btn btn-yellow">BACK TO HOME</a>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="footer-logo">SHAPE MASTER</div>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
</div>
<p>© 2026 ShapeMaster Studio. All rights reserved.</p>
</div>
</footer>
</body>
</html>