moneyed28 / privacy.html
Scorpiotur's picture
this link is empty please check 404 error
d19f322 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Moneyed28</title>
<link rel="stylesheet" href="style.css">
<style>
.privacy-container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background: var(--bg-alt);
border-radius: var(--radius);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}
.privacy-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
z-index: -1;
}
.privacy-section {
margin-bottom: 2rem;
padding: 1.5rem;
background: rgba(10, 10, 15, 0.6);
border-radius: var(--radius);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.privacy-section h2 {
color: var(--accent);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
position: relative;
display: inline-block;
}
.privacy-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(to right, var(--accent), transparent);
}
.privacy-section h3 {
margin: 1.5rem 0 0.5rem 0;
color: var(--accent-alt);
}
.privacy-section ul {
padding-left: 1.5rem;
margin: 0.5rem 0 1rem 0;
}
.privacy-section li {
margin-bottom: 0.5rem;
position: relative;
}
.privacy-section li::before {
content: '→';
color: var(--accent);
position: absolute;
left: -1.5rem;
}
.last-updated {
font-style: italic;
opacity: 0.8;
margin-bottom: 2rem;
display: block;
text-align: right;
font-size: 0.9rem;
}
.hero {
min-height: 50vh;
display: flex;
align-items: center;
background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
position: relative;
overflow: hidden;
padding: var(--spacing) 0;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.03) 0%, transparent 60%);
z-index: -1;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container header-container">
<a href="index.html" class="logo">Moneyed28</a>
<button class="nav-toggle" id="nav-toggle" aria-label="Toggle navigation">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<nav>
<ul class="nav-menu" id="nav-menu">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="index.html#about" class="nav-link">About</a></li>
<li><a href="index.html#products" class="nav-link">Products</a></li>
<li><a href="index.html#contact" class="nav-link">Contact</a></li>
<li><a href="privacy.html" class="nav-link">Privacy</a></li>
<li><a href="dropblitz.html" class="nav-link">DropBlitz</a></li>
</ul>
</nav>
</div>
</header>
<main id="main">
<section class="hero">
<div class="container privacy-container">
<h1>Privacy Policy <span style="color: var(--accent-alt);">for DropBlitz</span></h1>
<span class="last-updated">Last updated: <strong>January 17, 2026</strong></span>
<div class="privacy-section">
<p style="font-size: 1.1rem; line-height: 1.8;">
<strong style="color: var(--accent);">DropBlitz</strong> ("the App") provides <span style="color: var(--accent-alt);">bulk price editing</span> and <span style="color: var(--accent-alt);">AI-powered SEO generation</span> services to merchants who use Shopify to power their stores. This Privacy Policy describes how personal information is collected, used, and shared when you install or use the App in connection with your Shopify-supported store.
</p>
</div>
<div class="privacy-section">
<h2>1. Information We Collect</h2>
<p>When you install the App, we are automatically able to access certain types of information from your Shopify account:</p>
<ul>
<li><strong>Shop Information:</strong> We access your store's primary domain, currency, and country to configure the App.</li>
<li><strong>Product Data:</strong> We access your product titles, descriptions, prices, and IDs to perform bulk updates and generate SEO content.</li>
</ul>
</div>
<div class="privacy-section">
<h2>2. How We Use Your Information</h2>
<p>We use the personal information we collect from you and your customers in order to provide the Service and to operate the App. Specifically, we use it to:</p>
<ul>
<li>Update "Compare At" prices in bulk based on your settings.</li>
<li>Generate meta titles and descriptions using AI.</li>
</ul>
</div>
<div class="privacy-section">
<h2>3. Sharing Your Information</h2>
<p>We do not share your personal information with third parties, except as necessary to provide the Service:</p>
<ul>
<li><strong>OpenRouter / AI Providers:</strong> To generate SEO content, we send product titles and descriptions (but no personal customer data) to our AI provider.</li>
<li><strong>Compliance:</strong> We may share information to comply with valid legal process, such as a search warrant, subpoena, or court order.</li>
</ul>
</div>
<div class="privacy-section">
<h2>4. Data Retention</h2>
<p>The App does not persistently store your product data on our servers after processing. Session data is maintained only as long as the App is installed.</p>
</div>
<div class="privacy-section">
<h2>5. Your Rights (GDPR/CCPA)</h2>
<p>If you are a European or California resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us at hello@moneyed28.com.</p>
</div>
<div class="privacy-section">
<h2>6. Contact Us</h2>
<p>For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e-mail at hello@moneyed28.com.</p>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer style="background: var(--bg-alt); border-top: 1px solid rgba(255, 255, 255, 0.05);">
<div class="container">
<div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;">
<div>
<p><strong style="color: var(--accent);">Moneyed28 LLC</strong> © <span id="year">2023</span></p>
<p>30 N Gould St., Sheridan, Wyoming 82801, United States</p>
</div>
<div class="footer-links" style="display: flex; gap: 1.5rem;">
<a href="privacy.html" style="color: var(--muted);">Privacy</a>
<a href="#" style="color: var(--muted);">Terms</a>
<a href="index.html" style="color: var(--muted);">Made by Moneyed28</a>
</div>
</div>
<div style="margin-top: 2rem; text-align: center;">
<small style="opacity: 0.6;">Protecting your data with enterprise-grade security</small>
</div>
</div>
</footer>
<script>
// Set current year
document.getElementById('year').textContent = new Date().getFullYear();
// Mobile nav toggle
const navToggle = document.getElementById('nav-toggle');
const navMenu = document.getElementById('nav-menu');
navToggle.addEventListener('click', () => {
navMenu.classList.toggle('active');
navToggle.setAttribute('aria-expanded', navMenu.classList.contains('active'));
});
</script>
</body>
</html>