Files
AIProd/pages/About/Privacy.vue

169 lines
4.9 KiB
Vue

<template>
<div class="text-container terms">
<div class="top">
<div class="terms-title">
Privacy Policy
</div>
<div class="terms-date">
Effective Date: October 27, 2025
</div>
</div>
<div class="content">
<div class="title mb-14">
1. Introduction
</div>
<div class="text mb-14">
Welcome to AIProdLaunch (we, our, us). We provide a collection of AI tools and resources. Your privacy is important to us. This policy explains how we handle information when you use our website. By visiting or using AIProdLaunch, you agree to this Privacy Policy.
<!--Visit our website at <span class="text-link">http://www.futurepedia.io/</span> or any website of ours that links to this privacy notice-->
</div>
<div class="title mb-14">2. Information We Collect</div>
<div class="text mb-14">
We do not require accounts and do not collect personal information. We may collect anonymous data to improve our website, such as:
</div>
<div class="text text-dot mb-10">
Browser type and version
</div>
<div class="text text-dot mb-10">
Pages you visit and time spent
</div>
<div class="text text-dot mb-10">
Referring websites
</div>
<div class="text text-dot mb-10">
Aggregated IP addresses
</div>
<div class="text mb-14">
This information is used only for analytics and site improvement.
</div>
<div class="title mb-14">3. Cookies and Analytics</div>
<div class="text mb-14">
We may use cookies or similar technologies to track anonymous usage data, such as with Google Analytics. Cookies help us understand traffic, improve features, and optimize content.
</div>
<div class="text mb-14">
You can disable cookies in your browser, but some features may not work properly.
</div>
<div class="title mb-14">4. Advertising and Affiliate Links</div>
<div class="text mb-14">
We may show third-party ads or include affiliate links. Advertisers may use cookies or tracking tools.
</div>
<div class="text mb-14">
We do not control how third parties use data. Please check their privacy policies if you click their links or ads.
</div>
<div class="title mb-14">5. Third-Party Links and Content</div>
<div class="text mb-14">
Our site may link to external websites, including AI tool providers or platforms like ProductHunt. We are not responsible for their privacy practices or content.
</div>
<div class="title mb-14">6. Data Storage and Security</div>
<div class="text mb-14">
Our servers are located overseas. We implement standard security measures to protect the anonymous data we collect. Since we do not store personal information, your privacy is well protected.
</div>
<div class="title mb-14">7. Your Rights and Choices</div>
<div class="text mb-14">
You can:
</div>
<div class="text text-dot mb-10">
Disable cookies via your browser
</div>
<div class="text text-dot mb-10">
Opt-out of personalized ads through your browser or ad network settings
</div>
<div class="text text-dot mb-10">
Contact us with questions about this Privacy Policy
</div>
<div class="title mb-14">8. Updates to This Policy</div>
<div class="text mb-14">
We may update this policy from time to time. Updated versions will appear on this page with the revision date. Your continued use of AIProdLaunch means you accept the updated policy.
</div>
<div class="title mb-14">9. Contact Us</div>
<div class="text mb-14">
If you have questions, please reach out to:
</div>
<div class="text mb-14">
Email: <span class="text-link">corina@inziqi.com</span>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
// 数据项
}
},
methods: {
// 方法
}
}
</script>
<style lang="scss" scoped>
.mb-14 {
margin-bottom: 14px;
}
.mb-10 {
margin-bottom: 10px;
}
.terms {
.terms-title {
font-size: 40px;
font-weight: bold;
font-family: 'Poppins-Bold';
margin-top: 20px;
text-align: center;
}
.terms-date {
font-size: 16px;
color: #7B61FF;
text-align: center;
}
.content {
margin-top: 75px;
padding-bottom: 50px;
.text {
color: #64748B;
font-family: 'Poppins-Regular';
}
.title {
font-size: 18px;
color: #64748B;
font-weight: bold;
font-family: 'Poppins-Bold';
}
.title-dark {
font-size: 18px;
color: #1E293B;
font-weight: bold;
font-family: 'Poppins-Bold';
margin-bottom: 16px;
}
.text-link {
color: #7B61FF;
font-family: 'Poppins-Regular';
}
.text-underline {
text-decoration: underline;
color: #3A4A65;
font-family: 'Poppins-Regular';
margin-bottom: 20px;
}
.text-dot {
font-family: 'Poppins-Medium';
&::before {
content: '';
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background: $header-backgroungd;
margin-right: 14px;
margin-top: 7px;
flex-shrink: 0;
}
}
}
}
</style>