Files
Code-Create/src/pages/others/terms-of-use.vue
2026-05-20 10:55:54 +08:00

140 lines
5.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="terms-of-use">
<OthersHeader :title="$t('MainFooter.TermsOfUse')" />
<div class="content">
<p>
Please read these Terms of Use carefully.&nbsp; By accessing this Website, you are
consenting to these Terms of Use.&nbsp; If you do not accept these Terms of Use, do
not access this Website.
</p>
<p>1.<strong>Website Contents</strong></p>
<p>
This Website of the Code Create Limited (we, us, our) is for general
reference.&nbsp; We may, at our absolute discretion and at any time, without prior
notice to you, add to, amend or remove material from this Website, or alter the
presentation, substance, or functionality of this Website.
</p>
<p>2.<strong>Links to and from this Website</strong></p>
<p>
The links on this Website may take you to third-party websites or services that are
not owned or controlled by us.&nbsp; You acknowledge and agree that we have no
control over, and assume no responsibility for the content, privacy policies, or
practices of any third party websites or services.&nbsp; Links to other websites do
not constitute an endorsement by us of such websites or the information, products,
advertising, or other materials available on those websites.
</p>
<p>3.<strong>Intellectual Property Rights</strong></p>
<p>
All intellectual property rights subsisting in respect of this Website belong to us
or have been lawfully licensed to us for use on this Website. All rights under
applicable laws are hereby reserved. Except with our express written permission, you
are not allowed to upload, post, publish, reproduce, transmit or distribute in any
way any component of this Website itself or create derivative works with respect
thereto, as this Website is copyrighted under applicable laws.
</p>
<p>
You may only download such part of this Website as is expressly permitted to be
downloaded for the purposes specified.&nbsp; You have no rights in or to the
contents and you will not use them except as permitted under these Terms of Use.
</p>
<p>4.<strong>Limited Liability and Warranty</strong></p>
<p>
This Website is provided by us on an as is and as available basis.&nbsp; All
information is for your general reference only. We do not accept any responsibility
whatsoever in respect of such information.&nbsp; We do not guarantee or assume any
responsibility that:
</p>
<p>
this Website is available or will be uninterrupted or error-free, or that defects
will be corrected;
</p>
<p>
the information on this Website is accurate, adequate, current or reliable, or may
be used for any purpose other than for general reference;
</p>
<p>
the information on this Website is free of defect, error, omission, virus or
anything which may change, erase, add to or damage your software, data or equipment;
or
</p>
<p>
the messages sent through the internet will be free from interception, corruption
or loss.
</p>
<p>
We make no representation that the information on this Website is appropriate or
available for use in any other jurisdictions.&nbsp; Those who access this Website
from other locations do so at their discretion and are solely responsible for
compliance with their laws and rules.
</p>
<p>5.<strong>Privacy Policy</strong></p>
<p>
For information about our privacy policies and practices, please refer to
our&nbsp;<strong
><a href="/privacy-policy" data-type="URL" data-id="/privacy-policy"
>Privacy Policy Statement</a
></strong
>. Where personal data is collected, you should also have reference to the relevant
Personal Information Collection Statement in the form through which your personal
data is collected.
</p>
<p>6.<strong>Governing Law and Jurisdiction</strong></p>
<p>
These Terms of Use shall be governed by the law of the Hong Kong Special
Administrative Region of the Peoples Republic of China (Hong Kong). You agree to
submit to the non-exclusive jurisdiction of the Hong Kong courts.
</p>
<p>7.<strong>General Matters</strong></p>
<p>
These Terms of Use are subject to change.&nbsp; Any changes will be posted on this
page. Your continued use of our website after the posting of such changes indicates
your acceptance to the changes. In case of any inconsistency between the English and
Chinese versions, the English version shall prevail.
</p>
</div>
</div>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
import OthersHeader from './others-header.vue'
</script>
<style scoped lang="less">
.terms-of-use {
border-top: var(--main-header-height) solid #000;
background-color: #f9f9f9;
> .content {
max-width: 1230px;
width: 100%;
margin: 0 auto;
padding: 25px 15px 80px;
line-height: 1.6;
color: #333;
font-weight: 400;
> p {
margin-bottom: 20px;
}
}
}
</style>