Files
kr-phim/app/pages/chinh-sach-bao-mat.vue
T
ngthanhvu 59333d51e9 Refactor components for improved type safety and code consistency
- Updated AppHeader.vue to use TypeScript interfaces for member menu items and removed unnecessary type assertions.
- Modified AuthModal.vue to enhance styling and improve accessibility with consistent class names and structure.
- Enhanced CommentReplies.vue to support deleting replies with a new prop and improved event emission.
- Adjusted GifPicker.vue to specify types for fetched data, ensuring better type safety.
- Refined HomeMovieCard.vue to handle mouse and focus events more robustly, improving user interaction.
- Corrected layout in chinh-sach-bao-mat.vue for better responsiveness and readability.
- Updated index.vue to streamline gradient overlays and button positioning for a cleaner UI.
- Improved [slug].vue to handle server channels and subtitles more dynamically, enhancing playback experience.
2026-07-31 04:01:24 -04:00

57 lines
2.7 KiB
Vue

<template>
<main class="min-h-screen bg-[#0f111a] text-white">
<AppHeader />
<section class="mx-auto max-w-200 px-4 pt-24 pb-16 sm:px-6 lg:px-8 xl:px-10">
<h1 class="text-3xl font-black text-white mb-6">Chính sách bảo mật</h1>
<div class="space-y-6 text-sm text-slate-300 leading-relaxed">
<div class="rounded-xl border border-white/10 bg-[#191b24] p-6">
<h2 class="text-lg font-bold text-white mb-3">1. Thu thập thông tin</h2>
<p>
CineK chỉ thu thập các thông tin cần thiết để cung cấp dịch vụ: email khi đăng tài khoản, lịch sử xem để
lưu tiến trình, danh sách phim yêu thích. Chúng tôi không thu thập thông tin nhân nhạy cảm.
</p>
</div>
<div class="rounded-xl border border-white/10 bg-[#191b24] p-6">
<h2 class="text-lg font-bold text-white mb-3">2. Sử dụng thông tin</h2>
<p>
Thông tin thu thập được sử dụng để: cung cấp cải thiện dịch vụ, lưu tiến trình xem, đồng bộ danh sách yêu
thích giữa các thiết bị, gửi thông báo về phim mới (nếu bạn đăng ).
</p>
</div>
<div class="rounded-xl border border-white/10 bg-[#191b24] p-6">
<h2 class="text-lg font-bold text-white mb-3">3. Chia sẻ thông tin</h2>
<p>
CineK không bán, chia sẻ hoặc tiết lộ thông tin nhân của bạn cho bên thứ ba, trừ khi yêu cầu từ
quan pháp luật thẩm quyền.
</p>
</div>
<div class="rounded-xl border border-white/10 bg-[#191b24] p-6">
<h2 class="text-lg font-bold text-white mb-3">4. Bảo mật dữ liệu</h2>
<p>
Chúng tôi sử dụng các biện pháp bảo mật tiêu chuẩn để bảo vệ thông tin người dùng, bao gồm hóa mật khẩu
kết nối HTTPS.
</p>
</div>
<div class="rounded-xl border border-white/10 bg-[#191b24] p-6">
<h2 class="text-lg font-bold text-white mb-3">5. Cookie</h2>
<p>
CineK sử dụng cookie để lưu phiên đăng nhập tùy chọn người dùng. Bạn thể tắt cookie trong trình duyệt
nhưng một số tính năng thể không hoạt động đúng.
</p>
</div>
<p class="text-slate-500">
Cập nhật lần cuối: Tháng 7, 2026. Nếu thắc mắc, vui lòng <NuxtLink to="/lien-he"
class="text-yellow-300 hover:underline">liên hệ chúng tôi</NuxtLink>.
</p>
</div>
</section>
</main>
</template>