canina/frontend/application/app/privacy/page.tsx
parsa aghaei 8d1b786a24
All checks were successful
Deploy Canina / deploy (push) Successful in 1m50s
chore(brand): rename all Persian occurrences of کانینا to کنینا across the project
2026-08-16 16:40:08 +03:30

73 lines
4.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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.

import type { Metadata } from "next";
import { Shield } from "lucide-react";
export const metadata: Metadata = {
title: "حریم خصوصی کاربران - کنینا ایران",
description: "سیاست‌های حفاظت از اطلاعات شخصی کاربران، امنیت داده‌های پزشکی و پرونده‌های درمانی پت در وب‌سایت کنینا ایران.",
alternates: {
canonical: "/privacy",
},
openGraph: {
title: "حریم خصوصی کاربران - کنینا ایران",
description: "سیاست‌های حفاظت از اطلاعات شخصی کاربران در وب‌سایت کنینا ایران.",
url: "https://canina-iran.com/privacy",
siteName: "کنینا ایران",
locale: "fa_IR",
type: "website",
}
};
export default function PrivacyPage() {
return (
<div className="bg-medical-gray-50 py-16 px-4 sm:px-6 lg:px-8 font-vazir" dir="rtl">
<div className="max-w-4xl mx-auto space-y-12">
{/* Header */}
<div className="text-center space-y-4">
<div className="w-16 h-16 bg-canina-blue/10 text-canina-blue rounded-[2rem] flex items-center justify-center mx-auto mb-6">
<Shield className="w-8 h-8" />
</div>
<h1 className="text-4xl lg:text-5xl font-black text-medical-gray-900 leading-tight">
حریم خصوصی کاربران
</h1>
<p className="text-lg text-medical-gray-500 max-w-2xl mx-auto leading-relaxed">
تعهد ما به امنیت دادهها و اطلاعات شخصی ثبت شده در وبسایت کنینا ایران.
</p>
</div>
{/* Content Document */}
<div className="bg-white border border-medical-gray-200 rounded-[3rem] p-10 md:p-12 shadow-xl space-y-8 text-medical-gray-700 leading-relaxed">
<section className="space-y-4">
<h3 className="text-xl font-black text-medical-gray-900">۱. جمعآوری اطلاعات</h3>
<p>
ما برای ارائه خدمات بهتر، از جمله پردازش سفارشات خرید، ثبت مشخصات شناسنامه پت شما در پرونده پزشکی و ارائه هشدارهای هوشمند دورههای درمان، اطلاعات محدودی نظیر شماره تماس، نام، آدرس تحویل و مشخصات حیوان خانگی شما را جمعآوری میکنیم.
</p>
</section>
<section className="space-y-4">
<h3 className="text-xl font-black text-medical-gray-900">۲. استفاده از اطلاعات</h3>
<p>
اطلاعات دریافتی شما صرفاً برای مقاصد عملیاتی سایت (ارسال محصولات، هماهنگیهای پشتیبانی، یادآوری تمدید خودکار مکملها و بهینهسازی تجربه خرید) استفاده خواهد شد و به هیچ عنوان در اختیار شرکتها یا سازمانهای ثالث قرار نمیگیرد.
</p>
</section>
<section className="space-y-4">
<h3 className="text-xl font-black text-medical-gray-900">۳. امنیت دادهها</h3>
<p>
تمامی اطلاعات حساس کاربران با استفاده از پروتکلهای امنیتی استاندارد و بستر امن HTTPS رمزگذاری شده و بر روی سرورهای ابری محافظت شده ذخیره میگردند. تیم فنی کنینا متعهد به پایش مداوم و بهروزرسانی سیستمهای امنیتی جهت جلوگیری از دسترسیهای غیرمجاز است.
</p>
</section>
<section className="space-y-4">
<h3 className="text-xl font-black text-medical-gray-900">۴. حقوق کاربران</h3>
<p>
شما در هر زمان میتوانید با ورود به پنل کاربری خود اقدام به تصحیح، تغییر یا حذف کامل مشخصات پرونده، نشانیها و اطلاعات کاربری خود نمایید.
</p>
</section>
</div>
</div>
</div>
);
}