'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 Umami Web Analytics to collect anonymized data about the usage of my website. This includes information such as page views, time spent on pages, and general interaction metrics. No personally identifiable information is stored or processed.

How I Use Your Information

The collected data is used solely to improve the performance, usability, and user experience of my website. Since all data is anonymized, it cannot be linked back to any individual.

Third-Party Services

Umami is a privacy-focused analytics tool that does not use cookies or track users across different sites. More information can be found on the official Umami website.

Contact Form

If you use the contact form on my website, the submitted information will be sent to me via email. This data is not stored or shared with third parties and is used solely to respond to your inquiry.

Social Media Links

My website contains links to GitHub and LinkedIn. Clicking on these links may result in data collection by the respective platforms, subject to their own privacy policies.

Your Rights

Since the collected data is fully anonymized, individual deletion requests are not applicable. However, if you have any concerns, you can 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.

); }