added privacy for lockli
All checks were successful
Build & Deploy Vite App (Docker Compose) / build-and-deploy (push) Successful in 2m30s

This commit is contained in:
2025-12-03 04:15:30 +03:00
parent 3adb87d40d
commit 003cae6fc8
4 changed files with 87 additions and 1 deletions

4
.dockerignore Normal file
View File

@@ -0,0 +1,4 @@
node_modules
dist
.git
.env

View File

@@ -1,3 +1,5 @@
version: '3.8'
services:
frontend:
build: .

View File

@@ -2,6 +2,7 @@ import React from 'react';
import { BrowserRouter as Router, Routes, Route, useLocation } from 'react-router-dom';
import Home from './pages/Home';
import Portal from './pages/Portal';
import LockliPrivacy from './pages/LockliPrivacy'; // <-- YENİ EKLENDİ
import { AnimatePresence } from 'framer-motion';
// Animasyonlu geçişler için bir Wrapper bileşeni
@@ -13,6 +14,9 @@ function AnimatedRoutes() {
<Routes location={location} key={location.pathname}>
<Route path="/" element={<Home />} />
<Route path="/portal" element={<Portal />} />
{/* Lockli Privacy Policy yalnızca URL'den erişilecek */}
<Route path="/lockli/privacy" element={<LockliPrivacy />} />
</Routes>
</AnimatePresence>
);
@@ -26,4 +30,4 @@ function App() {
);
}
export default App;
export default App;

View File

@@ -0,0 +1,76 @@
import React from "react";
export default function LockliPrivacy() {
return (
<div style={{ maxWidth: "800px", margin: "40px auto", padding: "0 16px", fontFamily: "system-ui, sans-serif", lineHeight: 1.6 }}>
<h1>Privacy Policy for Lockli</h1>
<p><strong>Last Updated:</strong> December 3, 2025</p>
<p>
This Privacy Policy explains how the mobile application <strong>Lockli</strong>
("the Application") handles user data. Lockli is designed as a fully offline
password manager and places great importance on protecting user privacy.
</p>
<h2>1. Data Collection</h2>
<p>
Lockli <strong>does not collect, process, store, or transmit any personal data</strong>.
</p>
<ul>
<li>No personal identifiers (name, email, phone, etc.)</li>
<li>No location data</li>
<li>No device or analytics data</li>
<li>No advertising or tracking data</li>
<li>No data is ever sent to external servers</li>
</ul>
<h2>2. Local Data Storage</h2>
<p>
All data entered by the userincluding passwords and notesis stored
<strong> exclusively on the users device</strong>.
</p>
<p>
The developer has <strong>no access</strong> to any stored information.
</p>
<h2>3. Internet Usage & Third-Party Services</h2>
<p>Lockli:</p>
<ul>
<li>Does not use an internet connection</li>
<li>Does not send any data to servers</li>
<li>Does not use analytics (Firebase, Google Analytics, etc.)</li>
<li>Does not display ads</li>
<li>Does not include third-party SDKs that collect data</li>
</ul>
<h2>4. Security</h2>
<p>
All data remains on the users device. Security therefore depends on device-level
protections such as screen lock and system encryption.
</p>
<h2>5. Childrens Privacy</h2>
<p>
Lockli is not directed at children under 13 and does not knowingly collect any data.
</p>
<h2>6. Changes to This Policy</h2>
<p>
Future updates will be published at:
</p>
<p>
<a href="https://atakanzgn.com.tr/lockli/privacy">
https://atakanzgn.com.tr/lockli/privacy
</a>
</p>
<h2>7. Contact Information</h2>
<p>
Email: <a href="mailto:messi10atakan10@gmail.com">messi10atakan10@gmail.com</a><br />
Website: <a href="https://atakanzgn.com.tr/lockli/privacy">
https://atakanzgn.com.tr/lockli/privacy
</a>
</p>
</div>
);
}