Udesign365.com is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website or use our services.
We may collect information about you in various ways, including:
Name, email address, phone number, company name, postal address, and other contact information you provide when filling out forms, requesting quotes, or communicating with us.
Browser type, IP address, pages visited, time spent on pages, and other diagnostic data collected automatically when you visit our website.
Records of correspondence when you contact us via forms, email, phone, or chat.
We use the information we collect for the following purposes:
We do not sell, trade, or rent your personal information to third parties. We may share your information in the following circumstances:
We implement appropriate technical and organizational measures to protect your personal information, including:
While we strive to protect your information, no method of transmission over the Internet is 100% secure.
Our website may use cookies and similar tracking technologies to enhance your browsing experience. These may include:
You can control cookies through your browser settings.
Depending on your location, you may have certain rights regarding your personal information, including:
To exercise these rights, please contact us using the information provided at the end of this policy.
If you are a California resident, you have additional rights under the California Consumer Privacy Act. Contact us for more information about your California privacy rights.
If you are located in the European Union, you have additional rights under the General Data Protection Regulation. We process your data in accordance with GDPR requirements.
Our services are not directed to individuals under the age of 18. We do not knowingly collect personal information from children. If you believe we have collected information from a child, please contact us immediately.
Our website may contain links to third-party websites. We are not responsible for the privacy practices of these external sites. We encourage you to review their privacy policies.
We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page and updating the "Last Updated" date. We encourage you to review this policy periodically.
This Privacy Policy and any disputes arising from or relating to it shall be governed by and construed in accordance with the laws of the State of Minnesota, without regard to its conflict of law principles.
You agree that any legal action or proceeding arising from or relating to this Privacy Policy shall be brought exclusively in the courts located in Hennepin County, Minnesota, and you hereby consent to the personal jurisdiction and venue of such courts.
PLEASE READ THIS SECTION CAREFULLY. IT AFFECTS YOUR LEGAL RIGHTS.
13.1 Agreement to Arbitrate. You and Udesign365.com ("Company," "we," or "us") agree that any dispute, claim, or controversy arising from or relating to this Privacy Policy, the relationship between you and Company, or your use of our services (collectively, "Disputes") shall be resolved by binding arbitration, rather than in court, except that you may assert claims in small claims court if your claims qualify.
13.2 Class Action Waiver. YOU AND COMPANY AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. The arbitrator may not consolidate more than one person's claims, and may not otherwise preside over any form of a representative or class proceeding.
13.3 Procedures and Venue. Arbitration shall be conducted by the American Arbitration Association ("AAA") under its Consumer Arbitration Rules then in effect. The arbitration shall take place in Hennepin County, Minnesota, or another location mutually agreed upon. Judgment on the award rendered by the arbitrator may be entered in any court having jurisdiction thereof.
13.4 Costs of Arbitration. Payment of all filing, administration, and arbitrator fees will be governed by the AAA's rules, unless otherwise provided in this Agreement.
13.5 Opt-Out. You have the right to opt out of this arbitration agreement within 30 days of first accepting this Privacy Policy by contacting us in writing at the address provided below.
13.6 Exceptions. Notwithstanding the foregoing, either party may bring an individual action in small claims court, or seek injunctive or other equitable relief in a court of competent jurisdiction to prevent the actual or threatened infringement, misappropriation, or violation of a party's copyrights, trademarks, trade secrets, patents, or other intellectual property rights.
If you have any questions about this Privacy Policy or our privacy practices, please contact us:
Add this code to your website to display a cookie consent banner. This should be placed in the body section of all pages or in the website's body content settings.
<!-- Cookie Consent Banner -->
<div id="cookie-consent-banner" class="fixed bottom-0 left-0 right-0 z-50 p-4 bg-white shadow-2xl border-t border-gray-200 hidden" style="display: none;">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center justify-between gap-4">
<div class="flex-1">
<p class="text-gray-700 text-sm">
We use cookies to enhance your browsing experience, serve personalized content, and analyze our traffic.
By clicking "Accept", you consent to our use of cookies.
<a href="/privacy-policy" class="text-[var(--primary-color)] hover:underline">Learn more</a>
</p>
</div>
<div class="flex items-center gap-3">
<button id="cookie-settings" class="px-4 py-2 text-gray-600 hover:text-gray-900 font-medium text-sm">
Cookie Settings
</button>
<button id="cookie-decline" class="px-4 py-2 bg-gray-100 hover:bg-gray-200 text-gray-700 rounded-lg font-medium text-sm transition-colors">
Decline
</button>
<button id="cookie-accept" class="px-4 py-2 bg-[var(--primary-color)] hover:bg-[var(--primary-button-hover-bg-color)] text-white rounded-lg font-medium text-sm transition-colors">
Accept All Cookies
</button>
</div>
</div>
</div>
</div>
<!-- Cookie Consent Script -->
<script>
(function() {
const banner = document.getElementById('cookie-consent-banner');
const acceptBtn = document.getElementById('cookie-accept');
const declineBtn = document.getElementById('cookie-decline');
const settingsBtn = document.getElementById('cookie-settings');
function showBanner() {
if (banner) {
banner.style.display = 'block';
banner.classList.remove('hidden');
banner.classList.add('animate-slide-up');
}
}
function hideBanner() {
if (banner) {
banner.style.display = 'none';
banner.classList.add('hidden');
}
}
function setCookieConsent(consent) {
const date = new Date();
date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000));
document.cookie = "cookie_consent=" + consent + ";expires=" + date.toUTCString() + ";path=/;SameSite=Lax";
hideBanner();
}
function getCookieConsent() {
const name = "cookie_consent=";
const decodedCookies = decodeURIComponent(document.cookie);
const ca = decodedCookies.split(';');
for(let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
// Check if user has already made a choice
if (getCookieConsent() === "") {
// Show banner after a short delay
setTimeout(showBanner, 1500);
}
// Event listeners
if (acceptBtn) {
acceptBtn.addEventListener('click', function() {
setCookieConsent('accepted');
// Enable all cookies
console.log('All cookies accepted');
});
}
if (declineBtn) {
declineBtn.addEventListener('click', function() {
setCookieConsent('declined');
// Disable non-essential cookies
console.log('Non-essential cookies declined');
});
}
if (settingsBtn) {
settingsBtn.addEventListener('click', function() {
// Redirect to cookie policy page or open modal
window.location.href = '/privacy-policy#cookies';
});
}
})();
</script>
Copy the cookie consent banner HTML above.
Go to Settings → Body Content in your website dashboard and paste the HTML code.
The banner will automatically appear to new visitors and remember their preference for 1 year.