added privacy for lockli
All checks were successful
Build & Deploy Vite App (Docker Compose) / build-and-deploy (push) Successful in 2m30s
All checks were successful
Build & Deploy Vite App (Docker Compose) / build-and-deploy (push) Successful in 2m30s
This commit is contained in:
4
.dockerignore
Normal file
4
.dockerignore
Normal file
@@ -0,0 +1,4 @@
|
||||
node_modules
|
||||
dist
|
||||
.git
|
||||
.env
|
||||
@@ -1,3 +1,5 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
frontend:
|
||||
build: .
|
||||
|
||||
@@ -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;
|
||||
|
||||
76
src/pages/LockliPrivacy.jsx
Normal file
76
src/pages/LockliPrivacy.jsx
Normal 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 user—including passwords and notes—is stored
|
||||
<strong> exclusively on the user’s 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 user’s device. Security therefore depends on device-level
|
||||
protections such as screen lock and system encryption.
|
||||
</p>
|
||||
|
||||
<h2>5. Children’s 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user