Files
AIProd/pages/About/Service.vue

147 lines
4.5 KiB
Vue

<template>
<div class="text-container terms">
<div class="top">
<div class="title terms-title">
Terms Of Service
</div>
<div class="date terms-date">
Effective Date: October 27, 2025
</div>
</div>
<div class="content">
<div class="title mb-14">
1. Acceptance of Terms
</div>
<div class="text mb-14">
By accessing or using AIProdLaunch (we, our, us), you agree to comply with these Terms of Service. If you do not agree, please do not use our website.
</div>
<div class="title mb-14">2. Use of the Website</div>
<div class="text mb-14">
AIProdLaunch is a website providing information and links to AI tools and resources. You may use the website for personal, non-commercial purposes only. You agree not to:
</div>
<div class="text text-dot mb-10">
Violate any applicable laws or regulations
</div>
<div class="text text-dot mb-10">
Interfere with or disrupt the website or servers
</div>
<div class="text text-dot mb-10">
Attempt to gain unauthorized access to any part of the website
</div>
<div class="title mb-14">3. Intellectual Property</div>
<div class="text mb-14">
All content on AIProdLaunch, including text, images, logos, and website design, is owned by us or our licensors. You may view, download, or share content for personal use only. You may not reproduce, distribute, or modify content without permission.
</div>
<div class="title mb-14">4. Advertising and Affiliate Links</div>
<div class="text mb-14">
AIProdLaunch may display third-party ads or include affiliate links. We do not control third-party websites, ads, or tracking technologies. By using these links or clicking on ads, you acknowledge that any interaction is between you and the third party, and we are not responsible for their content, privacy practices, or transactions.
</div>
<div class="title mb-14">5. Disclaimer of Warranties</div>
<div class="text mb-14">
AIProdLaunch is provided as is and as available. We do not guarantee the accuracy, completeness, or reliability of any content or third-party links. Use of the website is at your own risk.
</div>
<div class="title mb-14">6. Limitation of Liability</div>
<div class="text mb-14">
To the maximum extent permitted by law, AIProdLaunch will not be liable for any direct, indirect, incidental, or consequential damages arising from your use of the website, including any loss of data, revenue, or goodwill.
</div>
<div class="title mb-14">7. Modifications to Terms</div>
<div class="text mb-14">
We may update these Terms of Service from time to time. Updated versions will be posted on this page with the revision date. Your continued use of AIProdLaunch constitutes acceptance of the updated Terms.
</div>
<div class="title mb-14">8. Governing Law</div>
<div class="text mb-14">
These Terms are governed by the laws of the country where the website servers are hosted, without regard to its conflict of law rules.
</div>
<div class="title mb-14">9. Contact Us</div>
<div class="text mb-14">
If you have any questions regarding these Terms of Service, please contact us at:
</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;
margin-top: 20px;
}
.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-Medium';
margin-bottom: 20px;
}
.text-dot {
&::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>