Imprint

This legal notice applies to all offers under the domain www.nestiq.io, including all subdomains (subpages).

The service at www.nestiq.io is provided by:

immooly GmbH

Demetriusweg 11
D-70563 Stuttgart

Phone: +49 (0)178-8270286
Email: [email protected]

Represented by: immooly GmbH
Managing Director: Philipp Hofmann

Registry entry: Registered in the commercial register
Registry court: Stuttgart Local Court
Registry number: HRB 785011
Trade license pursuant to Section 34c (1) of the Trade Regulation
Act License granted by: Stuttgart Chamber of Industry and Commerce

VAT identification number: DE 353190268

Editorial responsibility pursuant to Section 18 (2) MStV:

Philipp Hofmann
c/o immooly GmbH
Demetriusweg 11
D-70563 Stuttgart

Email: [email protected]

Consumer information in accordance with EU Regulation No. 524/2013

The European Commission provides a platform for online dispute resolution (ODR). The platform can be found at http://ec.europa.eu/consumers/odr/

Our email address is: [email protected]

Immooly is not willing or obligated to participate in dispute resolution proceedings before a consumer arbitration board.

Social Media

This legal notice also applies to our presence on the following social media platforms:

Facebook: https://www.facebook.com/nestiq.official
Instagram: https://www.instagram.com/nestiq.official
LinkedIn: https://www.linkedin.com/company/nestiq-offiziell

Legal notice

The texts, images, graphics, animations, video and audio files, and all other content on this website are subject to the legal provisions of copyright law and, where applicable, other intellectual property rights. The protected content of this website may not be reproduced, distributed, reproduced, made publicly available, or otherwise exploited without the consent of the copyright holder.

Present smarter.
Publish faster.

Exposé in minutes, social posts included, unlimited listings.

No fees. No subscription. Made for agents.

// Diesen Code in deine Webflow-Seite einfügen (vor ) document.addEventListener('DOMContentLoaded', function() { const form = document.querySelector('.w-form form'); const successDiv = document.querySelector('.w-form-done'); const errorDiv = document.querySelector('.w-form-fail'); if (form) { form.addEventListener('submit', async function(e) { e.preventDefault(); // Form-Daten sammeln const formData = { email: form.querySelector('input[type="email"]')?.value, name: form.querySelector('input[name="name"]')?.value, message: form.querySelector('textarea[name="message"]')?.value, source: window.location.pathname }; // Submit-Button deaktivieren const submitBtn = form.querySelector('input[type="submit"]'); const originalText = submitBtn.value; submitBtn.value = 'Wird gesendet...'; submitBtn.disabled = true; try { // An Google Apps Script senden const response = await fetch('https://script.google.com/macros/s/AKfycbzYj2akvRUGEe2b5efhVG6mzErigwoTm0wu8VKp1IQANkP_G9STHxqG--G3hA4eFuRXiw/exec', { method: 'POST', mode: 'cors', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formData) }); const result = await response.json(); if (result.success) { // Erfolg anzeigen form.style.display = 'none'; if (successDiv) successDiv.style.display = 'block'; // Optional: Form nach 3 Sekunden zurücksetzen setTimeout(() => { form.reset(); form.style.display = 'block'; if (successDiv) successDiv.style.display = 'none'; submitBtn.value = originalText; submitBtn.disabled = false; }, 3000); } else { throw new Error('Submission failed'); } } catch (error) { // Fehler anzeigen if (errorDiv) errorDiv.style.display = 'block'; submitBtn.value = originalText; submitBtn.disabled = false; console.error('Form submission error:', error); } }); } });