-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
100 lines (93 loc) · 5.81 KB
/
privacy.html
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Your Store in Minutes | Project Nautica</title>
<meta name="description" content="Create your professional e-commerce store quickly with Project Nautica. USB-powered, dimmable, and portable solutions.">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="font-['Inter'] antialiased">
<header class="sticky top-0 z-50 bg-white shadow-md">
<nav class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<a href="https://windwardboy.github.io/build-your-store-in-minutes--not-days-2025-02-11-mw5qv" class="text-2xl font-bold">Project Nautica</a>
<a href="https://windwardboy.github.io/build-your-store-in-minutes--not-days-2025-02-11-mw5qv" class="text-gray-600 hover:text-black transition-colors">← Back</a>
</div>
</nav>
</header>
<main class="container mx-auto px-4 py-12 max-w-4xl">
<h1 class="text-4xl font-bold mb-12 text-center">Privacy Policy</h1>
<section class="mb-12">
<h2 class="text-2xl font-semibold mb-4">Introduction</h2>
<p class="text-gray-600 mb-4">Welcome to Project Nautica's Privacy Policy. This document outlines how we collect, use, and protect your personal information when you use our website and services. By using our services, you agree to the collection and use of information in accordance with this policy.</p>
</section>
<section class="mb-12">
<h2 class="text-2xl font-semibold mb-4">Information We Collect</h2>
<p class="text-gray-600 mb-4">We collect several types of information for various purposes to provide and improve our service to you:</p>
<ul class="list-disc list-inside text-gray-600 space-y-2 ml-4">
<li>Personal identification information (Name, email address, phone number)</li>
<li>Usage data (Browser type, access time, pages visited)</li>
<li>Device information (IP address, browser type, operating system)</li>
</ul>
</section>
<section class="mb-12">
<h2 class="text-2xl font-semibold mb-4">How We Use Your Information</h2>
<p class="text-gray-600 mb-4">We use the collected information for:</p>
<ul class="list-disc list-inside text-gray-600 space-y-2 ml-4">
<li>Providing and maintaining our service</li>
<li>Notifying you about changes to our service</li>
<li>Providing customer support</li>
<li>Monitoring usage of our service</li>
<li>Detecting, preventing, and addressing technical issues</li>
</ul>
</section>
<section class="mb-12">
<h2 class="text-2xl font-semibold mb-4">Cookie Policy</h2>
<p class="text-gray-600 mb-4">We use cookies and similar tracking technologies to track activity on our service and hold certain information. Cookies are files with small amount of data that may include an anonymous unique identifier.</p>
<p class="text-gray-600 mb-4">You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our service.</p>
</section>
<section class="mb-12">
<h2 class="text-2xl font-semibold mb-4">Contact Us</h2>
<p class="text-gray-600 mb-4">If you have any questions about this Privacy Policy, please contact us:</p>
<ul class="list-disc list-inside text-gray-600 space-y-2 ml-4">
<li>By email: [email protected]</li>
<li>By visiting this page on our website: <a href="https://projectnautica.com/contact" class="text-blue-600 hover:underline">Contact Page</a></li>
</ul>
</section>
</main>
<footer class="bg-gray-900 text-white py-16">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Project Nautica</h3>
<p class="text-gray-400">Professional e-commerce solutions for modern businesses.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#features" class="text-gray-400 hover:text-white transition-colors">Features</a></li>
<li><a href="#benefits" class="text-gray-400 hover:text-white transition-colors">Benefits</a></li>
<li><a href="#faq" class="text-gray-400 hover:text-white transition-colors">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Contact</h4>
<p class="text-gray-400">[email protected]</p>
</div>
<div>
<h4 class="font-semibold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2024 Project Nautica. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>