privacy_policy.tsx
Return to Main

const PrivacyPolicy = {

lastUpdated: "February 11, 2025"

Important Notice

This Privacy Policy describes how we collect, use, and protect your personal information when you use our website. By using this site, you agree to the collection and use of information in accordance with this policy.

Information Collection

We collect minimal personal information through our contact form, including: • Name • Email address • Message content This information is used solely for communication purposes.
const collectInfo = async (userData) => {
  const { name, email, message } = userData;
  // Only essential data collected
  return await storeSecurely({ name, email, message });
};

Data Security

Your data is protected using industry-standard security measures. We: • Encrypt all data transmissions • Regularly update our security protocols • Never share your information with third parties
// AES-256 encryption implementation
const encryptData = (data) => {
  return crypto.subtle.encrypt(
    { name: "AES-GCM", iv: window.crypto.getRandomValues() },
    key,
    data
  );
};

Cookies & Tracking

We use essential cookies to: • Enhance site functionality • Analyze site traffic • Improve user experience You can disable cookies in your browser settings.
// Essential cookies only
const setCookie = (name, value) => {
  document.cookie = `${name}=${value};secure;samesite=strict`;
};

Your Rights

You have the right to: • Access your personal data • Request data deletion • Opt-out of communications Contact us to exercise these rights.
const handleDataRequest = async (type, userId) => {
  switch(type) {
    case 'ACCESS': return await getUserData(userId);
    case 'DELETE': return await deleteUserData(userId);
    case 'OPT_OUT': return await optOutUser(userId);
  }
};

Contact Information

const contactInfo = {}

email: "febnawanrochman2@gmail.com",

location: "Tasikmalaya, Indonesia"

// This privacy policy is subject to change without notice and was last updated on February 11, 2025. If you have any questions feel free to contact us.