getInTouch();
Wir sind für Sie da
Ein spannendes Projekt im Kopf oder eine knifflige Frage? Gerne packen wir mit an. Melden Sie sich einfach bei uns, und lassen Sie uns gemeinsam herausfinden, wie wir Sie unterstützen können.
1// Get in Touch
2const getInTouch = () => {
3 // Define contact methods with their availability and actions
4 const contactMethods = {
5 email: {
6 available: true,
7 status: 'Live',
8 message: '📧 Email sent. Awaiting reply... ' +
9 'maybe tomorrow.'
10 },
11 phone: {
12 available: true,
13 status: 'Live',
14 message: '📞 Call placed. They might answer...'
15 },
16 smokeSignal: {
17 available: false,
18 status: 'In development',
19 message: '🔥 Feature in alpha. ' +
20 'Clear skies required.'
21 },
22 calendly: {
23 available: true,
24 status: 'Live',
25 message: '📅 Meeting scheduled via Calendly. ' +
26 'Avoid 7 AM slots.'
27 }
28 };
29
30 // Process each contact method
31 for (let method in contactMethods) {
32 const contact = contactMethods[method];
33 if (contact.available) {
34 console.log(contact.message);
35 } else {
36 console.log(
37 `⚠️ ${capitalize(method)} is ${contact.status}.`
38 );
39 console.log(`💡 ${contact.message}`);
40 }
41 }
42
43 console.log(
44 '📬 All contact methods processed. ' +
45 'Awaiting response.'
46 );
47};
48
49// Helper function to capitalize method names
50const capitalize = (s) =>
51 s.charAt(0).toUpperCase() + s.slice(1);
52
53// Initiate the contact process
54getInTouch();
loadContactMethods();
+49 5222 187 68 20
Montag-Freitag: 09:00-12:00 | 13:00-17:00
hallo@evomation.de
Senden Sie uns eine E-Mail und wir melden uns bei Ihnen innerhalb von 48 Stunden zurück.
Termin vereinbaren
Wählen Sie einfach eine passende Zeit aus, und wir treffen uns online.