mirror of
https://github.com/Pavelevich/claw-alexa.git
synced 2026-03-16 17:42:47 +01:00
103 lines
4.1 KiB
JavaScript
103 lines
4.1 KiB
JavaScript
export default function Privacy() {
|
|
return (
|
|
<main style={{
|
|
maxWidth: '800px',
|
|
margin: '0 auto',
|
|
padding: '40px 20px',
|
|
color: '#fff',
|
|
lineHeight: '1.8'
|
|
}}>
|
|
<h1 style={{
|
|
fontSize: '2.5rem',
|
|
marginBottom: '30px',
|
|
background: 'linear-gradient(90deg, #00d4ff, #7b2ff7)',
|
|
WebkitBackgroundClip: 'text',
|
|
WebkitTextFillColor: 'transparent'
|
|
}}>
|
|
Privacy Policy
|
|
</h1>
|
|
|
|
<p style={{ color: '#888', marginBottom: '30px' }}>
|
|
Last updated: January 30, 2026
|
|
</p>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Overview</h2>
|
|
<p>
|
|
Smart Claw ("we", "our", or "the skill") is an Alexa skill that connects
|
|
users to AI assistants. This privacy policy explains how we collect, use,
|
|
and protect your information.
|
|
</p>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Information We Collect</h2>
|
|
<p>When you use Smart Claw, we may collect:</p>
|
|
<ul style={{ marginLeft: '20px', marginTop: '10px' }}>
|
|
<li><strong>Voice Commands:</strong> The questions and commands you speak to Alexa are processed to provide responses.</li>
|
|
<li><strong>Account Linking Data:</strong> If you link your account, we store your gateway URL and authentication token to connect to your personal AI assistant.</li>
|
|
<li><strong>Usage Data:</strong> Basic usage information to improve the skill.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>How We Use Your Information</h2>
|
|
<ul style={{ marginLeft: '20px' }}>
|
|
<li>To process your voice commands and provide AI responses</li>
|
|
<li>To connect to your personal AI gateway (if linked)</li>
|
|
<li>To improve and maintain the skill</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Data Storage</h2>
|
|
<p>
|
|
Your account linking information is stored securely in AWS DynamoDB.
|
|
Voice commands are processed in real-time and are not permanently stored by us.
|
|
Amazon may retain voice recordings according to their own privacy policy.
|
|
</p>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Data Sharing</h2>
|
|
<p>
|
|
We do not sell or share your personal information with third parties.
|
|
Your voice commands may be sent to:
|
|
</p>
|
|
<ul style={{ marginLeft: '20px', marginTop: '10px' }}>
|
|
<li>Your personal AI gateway (if you linked one)</li>
|
|
<li>xAI/Grok API for AI processing (if no gateway is linked)</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Your Rights</h2>
|
|
<p>You can:</p>
|
|
<ul style={{ marginLeft: '20px', marginTop: '10px' }}>
|
|
<li>Unlink your account at any time through the Alexa app</li>
|
|
<li>Disable the skill to stop all data collection</li>
|
|
<li>Request deletion of your data by contacting us</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Contact</h2>
|
|
<p>
|
|
For privacy questions or data deletion requests, contact us at:{' '}
|
|
<a href="mailto:chmirenko2@gmail.com" style={{ color: '#00d4ff' }}>
|
|
chmirenko2@gmail.com
|
|
</a>
|
|
</p>
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '30px' }}>
|
|
<h2 style={{ color: '#00d4ff', marginBottom: '15px' }}>Changes</h2>
|
|
<p>
|
|
We may update this privacy policy from time to time. Any changes will
|
|
be posted on this page with an updated revision date.
|
|
</p>
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|