76 lines
4.7 KiB
TypeScript
76 lines
4.7 KiB
TypeScript
export default async function PrivacyPage({ params }: { params: Promise<{ lang: string }> }) {
|
||
const { lang } = await params;
|
||
|
||
const content = {
|
||
tr: {
|
||
title: "Gizlilik Politikası",
|
||
subtitle: "Verilerinizin güvenliği bizim için önemlidir.",
|
||
text: `Kite Beach Akyaka (“Biz”, “Şirketimiz” veya “Otel”) olarak, web sitemizi ziyaret eden ve hizmetlerimizden faydalanan misafirlerimizin ("Kullanıcı" veya "Misafir") gizliliğini korumayı taahhüt ediyoruz. Bu Gizlilik Politikası, web sitemiz (www.kitebeachakyaka.com.tr) üzerinden toplanan bilgilerin nasıl kullanıldığını ve korunduğunu açıklar.
|
||
|
||
1. Hangi Bilgileri Topluyoruz?
|
||
Size daha iyi hizmet verebilmek amacıyla adınız, soyadınız, e-posta adresiniz, telefon numaranız ve talep detaylarınız gibi bilgileri doğrudan sizden talep etmekteyiz. Ayrıca web sitemizi ziyaret ettiğinizde otomatik olarak IP adresi, tarayıcı türü, ziyaret süresi gibi standart log bilgileri de toplanabilmektedir.
|
||
|
||
2. Bilgilerinizi Nasıl Kullanıyoruz?
|
||
Topladığımız bilgiler aşağıdaki amaçlar için kullanılmaktadır:
|
||
- Taleplerinizi değerlendirmek ve yanıtlamak,
|
||
- Sizinle iletişim kurmak ve taleplerinize yanıt vermek,
|
||
- Otel ve kitesurf okulu hizmetlerimizi geliştirmek,
|
||
- Pazarlama ve tanıtım bildirimleri göndermek (Yalnızca açık rızanız olması halinde),
|
||
- Yasal yükümlülüklerimizi yerine getirmek.
|
||
|
||
3. Bilgi Güvenliği
|
||
Kişisel bilgilerinizin yetkisiz erişime, değişime, ifşaya veya imhaya karşı korunması için gerekli teknik ve idari güvenlik önlemlerini almaktayız. Web sitemizdeki tüm veri akışları şifrelenmiş bağlantılar (SSL) üzerinden yapılmaktadır.
|
||
|
||
4. Üçüncü Taraflarla Paylaşım
|
||
Bilgilerinizi izniniz olmadan üçüncü taraflarla satmıyor, kiralamıyor veya paylaşmıyoruz. Sadece hizmet sağlamak için işbirliği yaptığımız ödeme sağlayıcıları gibi güvenilir partnerlerle, gizlilik sözleşmeleri çerçevesinde veri paylaşımı yapılabilmektedir.
|
||
|
||
5. Değişiklikler
|
||
Bu Gizlilik Politikası, zaman zaman güncellenebilir. Herhangi bir değişiklik durumunda yeni politika sitemizde yayınlanarak yürürlüğe girecektir.
|
||
`,
|
||
},
|
||
en: {
|
||
title: "Privacy Policy",
|
||
subtitle: "The security of your data is important to us.",
|
||
text: `As Kite Beach Akyaka ("We", "Our Company" or "Hotel"), we are committed to protecting the privacy of our guests ("User" or "Guest") who visit our website and benefit from our services. This Privacy Policy explains how the information collected through our website is used and protected.
|
||
|
||
1. What Information Do We Collect?
|
||
In order to serve you better, we request information such as your name, surname, email address, phone number, and request details directly from you. In addition, standard log information such as IP address, browser type, and visit duration may be automatically collected when you visit our website.
|
||
|
||
2. How Do We Use Your Information?
|
||
The information we collect is used for the following purposes:
|
||
- Processing and responding to your requests,
|
||
- Communicating with you and responding to your requests,
|
||
- Improving our hotel and kitesurf school services,
|
||
- Sending marketing and promotional notifications (Only with your explicit consent),
|
||
- Fulfilling our legal obligations.
|
||
|
||
3. Information Security
|
||
We take the necessary technical and administrative security measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. All data flows on our website are carried out over encrypted connections (SSL).
|
||
|
||
4. Sharing with Third Parties
|
||
We do not sell, rent, or share your information with third parties without your permission. Data sharing can only be done with reliable partners, such as payment providers with whom we cooperate to provide services, within the framework of confidentiality agreements.
|
||
|
||
5. Changes
|
||
This Privacy Policy may be updated from time to time. In case of any changes, the new policy will come into effect by being published on our site.`
|
||
}
|
||
};
|
||
|
||
const t = content[lang as keyof typeof content] || content.tr;
|
||
|
||
return (
|
||
<div className="pt-32 pb-20 bg-background min-h-screen">
|
||
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
|
||
<h1 className="font-serif text-4xl md:text-5xl font-bold text-dark mb-4">{t.title}</h1>
|
||
<h2 className="text-xl text-primary font-medium mb-10">{t.subtitle}</h2>
|
||
<div className="prose prose-lg text-gray-600">
|
||
{t.text.split('\n\n').map((paragraph, index) => (
|
||
<p key={index} className="mb-6 whitespace-pre-line leading-relaxed">
|
||
{paragraph}
|
||
</p>
|
||
))}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|