lastUpdated: "February 11, 2025"
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.
const collectInfo = async (userData) => {
const { name, email, message } = userData;
// Only essential data collected
return await storeSecurely({ name, email, message });
};// AES-256 encryption implementation
const encryptData = (data) => {
return crypto.subtle.encrypt(
{ name: "AES-GCM", iv: window.crypto.getRandomValues() },
key,
data
);
};// Essential cookies only
const setCookie = (name, value) => {
document.cookie = `${name}=${value};secure;samesite=strict`;
};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);
}
};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.