-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Privacy Policy - EasyWeather</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap" rel="stylesheet"> | ||
<style> | ||
body { | ||
font-family: 'Titillium Web', sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
color: #333; | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 20px auto; | ||
background: #fff; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
h1, h2 { | ||
color: #555; | ||
font-weight: 600; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Privacy Policy</h1> | ||
<p>Effective Date: Jan 01, 2025</p> | ||
|
||
<h2>Introduction</h2> | ||
<p>Welcome to EasyWeather, a mobile application developed by Shivam Goyal. This open-source app, available at <a href="https://github.com/shyvum/EasyWeather" target="_blank">GitHub</a>, provides weather updates based on your current location. We are committed to protecting your privacy and ensuring transparency about how we handle your information.</p> | ||
|
||
<h2>Information We Collect</h2> | ||
<p>EasyWeather requires access to your device's location to provide weather updates for your current location. The app uses your location data solely for this purpose and does not collect, store, or share this information with any third party.</p> | ||
|
||
<h2>How We Use Your Information</h2> | ||
<p>Your location data is used in real-time to fetch weather information from trusted weather service providers. Once the weather data is displayed, your location data is discarded. No information is stored or retained by the app.</p> | ||
|
||
<h2>Data Sharing</h2> | ||
<p>EasyWeather does not share your location data or any other personal information with third parties.</p> | ||
|
||
<h2>Data Accuracy</h2> | ||
<p>EasyWeather uses weather data from <a href="https://openweathermap.org/" target="_blank">OpenWeatherMap</a>. While we strive to provide accurate information, we are not responsible for any incorrect data provided by the service.</p> | ||
|
||
<h2>Open Source Commitment</h2> | ||
<p>EasyWeather is an open-source project. You can review the source code and contribute to the project at <a href="https://github.com/shyvum/EasyWeather" target="_blank">GitHub</a>. This ensures transparency in how the app processes data.</p> | ||
|
||
<h2>Your Consent</h2> | ||
<p>By using EasyWeather, you consent to the app accessing your device's location for the sole purpose of fetching weather data. If you do not agree with this policy, please do not use the app.</p> | ||
|
||
<h2>Changes to This Policy</h2> | ||
<p>We may update this privacy policy from time to time. Any changes will be posted on this page, and the effective date will be updated accordingly. We encourage you to review the policy periodically.</p> | ||
|
||
<h2>Contact Us</h2> | ||
<p>If you have any questions or concerns about this privacy policy, please contact Shivam Goyal at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
|
||
<p>Thank you for using EasyWeather!</p> | ||
</div> | ||
</body> | ||
</html> |