'use client'; import React, {useEffect, useState} from "react"; import Header from "../components/Header"; import Footer_Back from "../components/Footer_Back"; export default function PrivacyPolicy() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { setTimeout(() => { setIsVisible(true); }, 350); }, []); return (

Privacy Policy

This Privacy Policy explains how I collect, use, and protect your information when you use my website.

Information We Collect

I use Vercel's Speed Insights and Web Analytics to collect information about the usage of my website. This includes data such as page views, time spent on pages, interaction metrics, and performance insights.

How I Use Your Information

The information collected is used to improve the performance, usability, and user experience of my website. I analyze this data to optimize content, and enhance site performance.

Third-Party Services

Vercel may process collected data in accordance with their own privacy policies. Please review Vercel's Privacy Policy for more details.

Data Protection

I take data security seriously. The information collected through Vercel's Speed Insights and Web Analytics is securely stored and only accessible to me.

Your Rights

You have the right to request information about your data, ask for corrections, or request its deletion. If you wish to exercise these rights, please contact me.

Contact Us

If you have any questions about this Privacy Policy, please contact me at info@dki.one or use the contact form.

); }