-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. Added Privacy Policy Pages 3. In Footer Page Option to View Privacy Policy 4. Fixed Bug on View Profiles
- Loading branch information
1 parent
ad9e904
commit c8a34f2
Showing
7 changed files
with
212 additions
and
109 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
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,32 @@ | ||
.footer-title { | ||
font-size: 1.25rem; | ||
font-weight: bold; | ||
border-bottom: 1px solid #555; | ||
padding-bottom: 0.5rem; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.footer-text { | ||
font-size: 0.9rem; | ||
} | ||
|
||
.footer-link { | ||
transition: color 0.3s; | ||
} | ||
|
||
.footer-link:hover { | ||
color: #1e90ff; | ||
} | ||
|
||
.footer-icon { | ||
font-size: 1.5rem; | ||
transition: transform 0.3s; | ||
} | ||
|
||
.footer-icon:hover { | ||
transform: scale(1.1); | ||
} | ||
|
||
.footer-small { | ||
font-size: 0.8rem; | ||
} |
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
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,21 @@ | ||
body { | ||
background-color: #121212; | ||
} | ||
|
||
h1, h2 { | ||
border-bottom: 2px solid #555; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
ul li { | ||
margin-bottom: 0.5rem; | ||
} | ||
|
||
a { | ||
text-decoration: underline; | ||
transition: color 0.3s; | ||
} | ||
|
||
a:hover { | ||
color: #1e90ff; | ||
} |
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,100 @@ | ||
import "bootstrap/dist/css/bootstrap.min.css"; | ||
import "./PrivacyPolicy.css"; | ||
|
||
const PrivacyPolicy = () => { | ||
return ( | ||
<div className="container my-5 bg-dark text-white pt-3 pb-3 rounded"> | ||
<h1 className="mb-4 text-center">Privacy Policy for OSINT Application</h1> | ||
<p className="lead text-justify"> | ||
At Profile App, we value your privacy and are committed to protecting | ||
your personal information. This Privacy Policy outlines how we collect, | ||
use, and safeguard your information when you use our OSINT application. | ||
</p> | ||
|
||
<h2 className="mt-4">Information We Collect</h2> | ||
<ul className="list-unstyled"> | ||
<li> | ||
<strong>Personal Information:</strong> We may collect personal | ||
information such as your name, email address, and contact details when | ||
you register or interact with our app. | ||
</li> | ||
<li> | ||
<strong>Usage Data:</strong> We automatically collect information | ||
about your interactions with the app, including device information, IP | ||
address, and browsing behavior. | ||
</li> | ||
<li> | ||
<strong>Publicly Available Information:</strong> As an OSINT | ||
application, we may aggregate and analyze publicly available data from | ||
various sources. | ||
</li> | ||
</ul> | ||
|
||
<h2 className="mt-4">How We Use Your Information</h2> | ||
<p> | ||
We may use the information we collect for various purposes, including: | ||
</p> | ||
<ul className="list-unstyled"> | ||
<li>To provide and maintain our service.</li> | ||
<li>To improve, personalize, and expand our app s features.</li> | ||
<li> | ||
To communicate with you, including sending updates, newsletters, or | ||
promotional content. | ||
</li> | ||
<li>To analyze user behavior and trends to enhance user experience.</li> | ||
</ul> | ||
|
||
<h2 className="mt-4">Data Protection</h2> | ||
<p> | ||
We implement reasonable security measures to protect your personal | ||
information from unauthorized access, use, or disclosure. However, | ||
please be aware that no method of transmission over the internet or | ||
method of electronic storage is 100% secure. | ||
</p> | ||
|
||
<h2 className="mt-4">Information Sharing</h2> | ||
<p> | ||
We do not sell or rent your personal information to third parties. We | ||
may share information with trusted partners who assist us in operating | ||
our application, conducting our business, or servicing you, as long as | ||
those parties agree to keep this information confidential. | ||
</p> | ||
|
||
<h2 className="mt-4">Your Rights</h2> | ||
<p> | ||
Depending on your jurisdiction, you may have the following rights | ||
regarding your personal information: | ||
</p> | ||
<ul className="list-unstyled"> | ||
<li>The right to access your personal information.</li> | ||
<li>The right to request correction of inaccurate data.</li> | ||
<li>The right to request deletion of your personal data.</li> | ||
<li> | ||
The right to object to or restrict the processing of your information. | ||
</li> | ||
</ul> | ||
|
||
<h2 className="mt-4">Changes to This Privacy Policy</h2> | ||
<p> | ||
We may update our Privacy Policy from time to time. We will notify you | ||
of any changes by posting the new Privacy Policy on this page with a | ||
revised effective date. | ||
</p> | ||
|
||
<h2 className="mt-4">Contact Us</h2> | ||
<p> | ||
If you have any questions about this Privacy Policy, please contact us | ||
at: | ||
</p> | ||
<p> | ||
Email:{" "} | ||
<a href="mailto:support@profile-app.com" className="text-light"> | ||
support@profile-app.com | ||
</a> | ||
</p> | ||
<p>Phone: +1 (123) 456-7890</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default PrivacyPolicy; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.