This repository hosts the legal documents for the Lonnskart app, including the Privacy Policy.
# Create a new repository on GitHub named "lonnskart-legal" (or similar)
# Then clone it locally:
git clone https://github.com/yourusername/lonnskart-legal.git
cd lonnskart-legal
# Copy the privacy-policy.html file to the repository
cp privacy-policy.html /path/to/lonnskart-legal/
# Commit and push
git add privacy-policy.html
git commit -m "Add privacy policy"
git push origin main
main branchYour privacy policy will be available at:
https://yourusername.github.io/lonnskart-legal/privacy-policy.html
If you want to use legal.lonnskart.com or similar:
yourusername.github.ioWhenever you need to update the privacy policy:
privacy-policy.htmlgit add privacy-policy.html
git commit -m "Update privacy policy"
git push origin main
import { Linking } from 'react-native';
const PRIVACY_POLICY_URL = 'https://yourusername.github.io/lonnskart-legal/privacy-policy.html';
const openPrivacyPolicy = () => {
Linking.openURL(PRIVACY_POLICY_URL);
};
// In your component:
<TouchableOpacity onPress={openPrivacyPolicy}>
<Text>Privacy Policy</Text>
</TouchableOpacity>
import { WebView } from 'react-native-webview';
const PRIVACY_POLICY_URL = 'https://yourusername.github.io/lonnskart-legal/privacy-policy.html';
// In your component:
<WebView
source=
style=
/>
import { Modal, SafeAreaView, TouchableOpacity } from 'react-native';
import { WebView } from 'react-native-webview';
const [showPolicy, setShowPolicy] = useState(false);
<Modal visible={showPolicy} animationType="slide">
<SafeAreaView style=>
<TouchableOpacity onPress={() => setShowPolicy(false)}>
<Text>Close</Text>
</TouchableOpacity>
<WebView source= />
</SafeAreaView>
</Modal>
Make sure to replace these placeholders in privacy-policy.html:
[Your Company Address][Your Email Address][Your Phone Number][your support email][your company address][if applicable] (for Data Protection Officer)lonnskart-legal/
├── README.md
├── privacy-policy.html
└── terms-of-service.html (to be added later)
© 2026 Lonnskart. All rights reserved.