Error 500 Internal Server Error

GET https://storm.ewm.dev/fr/qui-sommes-nous

Forwarded to ErrorController (6ee947)

Exceptions

Variable "property" does not exist.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#2609
  -lineno: 12
  -name: "includes/formScript.html.twig"
  -rawMessage: "Variable "property" does not exist."
  -sourcePath: "/home/clients/14b5397f746691c6b08ec948889ec1dd/var/www/storm-be/templates/includes/formScript.html.twig"
  -sourceCode: """
     <script type="application/javascript">\n
        $(document).ready(function () {\n
            $("#form_inquiry").submit(function (event) {\n
                    event.preventDefault();\n
                    event.stopImmediatePropagation();\n
    \n
                    // Push to dataLayer BEFORE the AJAX call\n
                   window.dataLayer = window.dataLayer || [];\n
                   window.dataLayer.push({\n
                       event: 'contact_proprietary',\n
                       property: {\n
                           id: "{{ property.reference }}",\n
                           name: "{{ property.title|raw }}",\n
                           surface: "{{ property.surface|number_format(0, ' ', ' ') }} m²",\n
                           city: "{{ property.city }}",\n
                           type: "{{ app.request.query.get('type') }}"\n
                       },\n
                       user_data: {\n
                           email_hash: "{{ app.session.get('user') ? app.session.get('user').email|sha256 : '' }}",\n
                           is_connected: "{{ app.session.get('user') ? 'yes' : 'no' }}",\n
                           user_id: "{{ app.session.get('user') ? app.session.get('user').id : '' }}"\n
                       }\n
                   });\n
    \n
                    grecaptcha.ready(function () { \n
                        grecaptcha\n
                            .execute("{{ recaptcha_site_key }}", {\n
                                action: "form_inquiry"\n
                            }) \n
                            .then(function (token) {\n
                            $.ajax({\n
                                url: "{{ path('mail_send') }}",\n
                                type: "POST",\n
                                data: {\n
                                    'email-from': $("input[name=email-from]").val(),\n
                                    'email-to': $("input[name=email-to]").val(),\n
                                    'email-subject': $("input[name=email-subject]").val(),\n
                                    'email-owner': $("input[name=email-owner]").val(),\n
                                    'data': $("#form_inquiry").serializeArray(),\n
                                    'recaptchaResponseInquiry': token\n
                                },\n
                                success: function (data) {\n
                                    $('#form_inquiry').hide();\n
                                    $('#success_message').fadeIn();\n
                                    \n
                                    setTimeout(()=>{\n
                                        $('#success_message').hide();\n
                                        $('#form_inquiry').fadeIn();\n
                                        $('#form_inquiry').removeClass('sending');\n
                                    }\n
                                    , 4000)\n
                                },\n
                                error: function (err) {\n
                                    $('#form_inquiry').hide();\n
                                    $('#error_message').fadeIn();\n
                                    \n
                                    setTimeout(()=>{\n
                                        $('#error_message').hide();\n
                                        $('#form_inquiry').fadeIn();\n
                                        $('#form_inquiry').removeClass('sending');\n
                                    }\n
                                    , 4000)\n
                                }\n
                            });\n
                    });\n
                });\n
            });\n
        });\n
    </script>\n
    """
}
  1.                 // Push to dataLayer BEFORE the AJAX call
  2.                window.dataLayer = window.dataLayer || [];
  3.                window.dataLayer.push({
  4.                    event: 'contact_proprietary',
  5.                    property: {
  6.                        id: "{{ property.reference }}",
  7.                        name: "{{ property.title|raw }}",
  8.                        surface: "{{ property.surface|number_format(0, ' ', ' ') }} m²",
  9.                        city: "{{ property.city }}",
  10.                        type: "{{ app.request.query.get('type') }}"
  11.                    },
  1.                window.dataLayer.push({
  2.                    event: 'contact_proprietary',
  3.                    property: {
  4.                        id: \"";
  5.         // line 12
  6.         yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env$this->source, (isset($context["property"]) || array_key_exists("property"$context) ? $context["property"] : (function () { throw new RuntimeError('Variable "property" does not exist.'12$this->source); })()), "reference", [], "any"falsefalsefalse12), "html"nulltrue);
  7.         yield "\",
  8.                        name: \"";
  9.         // line 13
  10.         yield CoreExtension::getAttribute($this->env$this->source, (isset($context["property"]) || array_key_exists("property"$context) ? $context["property"] : (function () { throw new RuntimeError('Variable "property" does not exist.'13$this->source); })()), "title", [], "any"falsefalsefalse13);
  11.         yield "\",
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = []): void
  4.     {
  5.         foreach ($this->yield($context$blocks) as $data) {
  6.             echo $data;
  7.         }
  8.     }
  9.     public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 359)
  1.                 ob_start();
  2.             } else {
  3.                 ob_start(function () { return ''; });
  4.             }
  5.             try {
  6.                 $this->display($context);
  7.             } catch (\Throwable $e) {
  8.                 while (ob_get_level() > $level) {
  9.                     ob_end_clean();
  10.                 }
  1.         yield from $this->template->yieldBlock($name$context);
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     /**
  8.      * @return void
  9.      */
  1.             if ($isSandboxed) {
  2.                 $loaded->unwrap()->checkSecurity();
  3.             }
  4.             return $loaded->render($variables);
  5.         } finally {
  6.             if ($isSandboxed && !$alreadySandboxed) {
  7.                 $sandbox->disableSandbox();
  8.             }
  9.         }
  1.         $_parent $context['_parent'];
  2.         unset($context['_seq'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
  3.         $context array_intersect_key($context$_parent) + $_parent;
  4.         // line 8
  5.         yield "        ";
  6.         yield Twig\Extension\CoreExtension::include($this->env$context"includes/formScript.html.twig");
  7.         yield "
  8.     ";
  9.         
  10.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> block_content (line 432)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 yield from $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1. \t\t\t\t";
  2.         // line 80
  3.         yield from $this->unwrap()->yieldBlock('smoothContentBegin'$context$blocks);
  4.         // line 83
  5.         yield "\t\t\t\t\t";
  6.         yield from $this->unwrap()->yieldBlock('content'$context$blocks);
  7.         // line 84
  8.         yield "\t\t\t\t\t";
  9.         yield from $this->unwrap()->yieldBlock('newslatter'$context$blocks);
  10.         // line 87
  11.         yield "\t\t\t\t\t";
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""pages/about.html.twig"));
  3.         $this->parent $this->loadTemplate("base.html.twig""pages/about.html.twig"1);
  4.         yield from $this->parent->unwrap()->yield($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 388)
  1.     {
  2.         $context += $this->env->getGlobals();
  3.         $blocks array_merge($this->blocks$blocks);
  4.         try {
  5.             yield from $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = []): void
  4.     {
  5.         foreach ($this->yield($context$blocks) as $data) {
  6.             echo $data;
  7.         }
  8.     }
  9.     public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 359)
  1.                 ob_start();
  2.             } else {
  3.                 ob_start(function () { return ''; });
  4.             }
  5.             try {
  6.                 $this->display($context);
  7.             } catch (\Throwable $e) {
  8.                 while (ob_get_level() > $level) {
  9.                     ob_end_clean();
  10.                 }
  1.         yield from $this->template->yieldBlock($name$context);
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     /**
  8.      * @return void
  9.      */
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if (null !== $block) {
  2.             return $this->container->get('twig')->load($view)->renderBlock($block$parameters);
  3.         }
  4.         return $this->container->get('twig')->render($view$parameters);
  5.     }
  6.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  7.     {
  8.         $content $this->doRenderView($view$block$parameters$method);
  1.      *
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function renderView(string $view, array $parameters = []): string
  5.     {
  6.         return $this->doRenderView($viewnull$parameters__FUNCTION__);
  7.     }
  8.     /**
  9.      * Returns a rendered block from a view.
  10.      *
  1.             $content $this->renderPreview(
  2.                 $viewTemplate,
  3.                 $data
  4.             );
  5.         } else {
  6.             $content $this->renderView(
  7.                 $viewTemplate,
  8.                 $data
  9.             );
  10.         }
  1.      *
  2.      * @return Response
  3.      */
  4.     public function indexAction(StructureInterface $structure$preview false$partial false)
  5.     {
  6.         $response $this->renderStructure(
  7.             $structure,
  8.             [],
  9.             $preview,
  10.             $partial
  11.         );
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 183)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 69)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Variable "property" does not exist.

  at templates/includes/formScript.html.twig:12
  at __TwigTemplate_11a5a3c1625973cb095d555cd38bf868->{closure}()
     (var/cache/website/dev/twig/cb/cb6ad1aa2c69734913d27052aeb928f6.php:61)
  at __TwigTemplate_11a5a3c1625973cb095d555cd38bf868->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), array())
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), array())
     (vendor/twig/twig/src/Template.php:344)
  at Twig\Template->display(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/Template.php:359)
  at Twig\Template->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'))
     (vendor/twig/twig/src/Extension/CoreExtension.php:1493)
  at Twig\Extension\CoreExtension::include(object(Environment), array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), 'includes/formScript.html.twig')
     (var/cache/website/dev/twig/fc/fc4b2fefb3497a24279ccf036c388440.php:114)
  at __TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821->block_content(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:432)
  at Twig\Template->yieldBlock('content', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (var/cache/website/dev/twig/5c/5c88e726e40ef83d57dc58e3094f3b22.php:146)
  at __TwigTemplate_9d73c8cb19e13b615dce5c46e439005b->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f', 'originTemplate' => 'about', 'originTemplateClass' => 'header__transparent'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('transparent' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_transparent'), 'meta' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_meta'), 'metaDesc' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_metaDesc'), 'style' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_style'), 'bodyStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_bodyStyle'), 'loader' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_loader'), 'includes' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_includes'), 'mainStyle' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_mainStyle'), 'app' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_app'), 'smoothContentBegin' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentBegin'), 'content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content'), 'newslatter' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_newslatter'), 'smoothContentEnd' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_smoothContentEnd'), 'javascripts' => array(object(__TwigTemplate_9d73c8cb19e13b615dce5c46e439005b), 'block_javascripts')))
     (var/cache/website/dev/twig/fc/fc4b2fefb3497a24279ccf036c388440.php:53)
  at __TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821->doDisplay(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content')))
     (vendor/twig/twig/src/Template.php:388)
  at Twig\Template->yield(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous'), 'app' => object(AppVariable), 'recaptcha_secret_key' => '6LeCGAQoAAAAAGitW_SIXa0Jx3Hy8hThYrGbYfFe', 'recaptcha_site_key' => '6LeCGAQoAAAAAOF1qFyxx3w1LhmCKsdADbtWqrrF', 'google_map_api_key' => 'AIzaSyB76vRIRrSY9LariuTihwjBw3Lse-frXnE', 'newsletter_api_key' => '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', 'insee_api_key' => 'ab3d886a-55d3-4c58-bd88-6a55d3ec581f'), array('content' => array(object(__TwigTemplate_85f0c9da7efac2f032ffcd5b22d6f821), 'block_content')))
     (vendor/twig/twig/src/Template.php:344)
  at Twig\Template->display(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')))
     (vendor/twig/twig/src/Template.php:359)
  at Twig\Template->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')))
     (vendor/twig/twig/src/Environment.php:334)
  at Twig\Environment->render('pages/about.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:431)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('pages/about.html.twig', null, array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')), 'renderView')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:229)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/about.html.twig', array('view' => array('title' => array(), 'url' => array(), 'blocks' => array(array('title' => array(), 'cover' => array('id' => 32)), array('title' => array(), 'description' => array()), array('title' => array(), 'values' => array(array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()), array('title' => array(), 'svg' => array()))), array('title' => array(), 'services' => array(array('title' => array(), 'description' => array(), 'image' => array('id' => 13), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7e797d2e-78cd-44b8-b673-e3c26761deaf'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 15), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '08b7eb09-c860-4b58-8250-d2d2a5562c2c'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 16), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '7364f4a9-26d2-4687-9e51-ccbdd5f32b33'), 'btnTarget' => array()), array('title' => array(), 'description' => array(), 'image' => array('id' => 14), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '40c0b0b0-0c90-4f0c-81fd-fbce8da947b1'), 'btnTarget' => array()))), array('title' => array(), 'description' => array(), 'form' => array('title' => array(), 'form' => array(array('field' => array(array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_gender' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array(), 'field_values' => array(), 'field_default' => array()), array('field_label' => array(), 'field_name' => array(), 'field_class' => array(), 'field_required' => array()), array('field_values' => array(), 'btnText' => array(), 'btnLink' => array('provider' => 'page', 'locale' => 'fr', 'href' => '5460bb2a-fdeb-4718-b05e-7a4700c027ae')), array('field_label' => array(), 'field_class' => array(), 'field_id' => array())))), 'messageTitle' => array(), 'success' => array(), 'success_content' => array(), 'error' => array(), 'error_content' => array(), 'email_to' => array(), 'email_from' => array(), 'template' => 'form', 'uuid' => '41ed80a0-7eae-4d10-82bc-50872067f930')))), 'content' => array('title' => 'Qui sommes nous ?', 'url' => '/qui-sommes-nous', 'blocks' => array(array('type' => 'about-cover', 'settings' => object(stdClass), 'title' => 'Qui sommes nous ?', 'cover' => object(Media)), array('type' => 'about-details', 'settings' => object(stdClass), 'title' => '<p style="text-align:center;">Pensé pour vos enjeux, <strong>STORM</strong> propulse&nbsp;</p><p style="text-align:center;">bailleurs, locataires, vendeurs et acquéreurs&nbsp;</p><p style="text-align:center;">dans un écosystème augmenté par la Data et l’IA</p><p style="text-align:center;">&nbsp;</p>', 'description' => '<p>Nous imaginons un marché où bailleurs, utilisateurs, vendeurs et acquéreurs interagissent dans un écosystème digital performant, où la donnée devient le moteur de chaque décision.</p><p>Fini l’opacité, les lenteurs et les pertes de temps : place à la clarté, à la fluidité et à la réactivité, pour transformer chaque échange en opportunité.</p><p><strong>Notre mission :</strong></p><ul><li>Faciliter une mise en relation directe et instantanée</li><li>Fournir des données prédictives pour mieux anticiper</li><li>Proposer une marketplace de services intégrés</li><li>Offrir une interface intuitive tournée vers l’action stratégique</li></ul><p>Plus qu’une simple digitalisation des transactions, nous redonnons aux acteurs du marché la maîtrise de leurs décisions.</p><p>Prenez part à la révolution <strong>STORM</strong>.</p><p>&nbsp;</p>'), array('type' => 'about-value', 'settings' => object(stdClass), 'title' => 'Nos valeurs', 'values' => array(array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Efficacité', 'svg' => '<svg class="w-[34px] h-[39px] 3xl:w-[51px] 3xl:h-[60px]" viewbox="0 0 51 60" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M1.19238 16.0995V44.2025L25.5002 58.302M1.19238 16.0995L25.5002 2L50.0002 16.0995M1.19238 16.0995L25.5002 30.103M50.0002 16.0995V44.2025L25.5002 58.302M50.0002 16.0995L25.5002 30.103M25.5002 58.302V30.103" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M25.5 2.0957V30.1028M25.5 30.1028L1 44.2982M25.5 30.1028L50 44.2982" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Expertise', 'svg' => '					<svg class="w-[35px] h-[35px] 3xl:w-[59px] 3xl:h-[55px]" viewbox="0 0 59 55" fill="none" xmlns="http://www.w3.org/2000/svg">						<g id="Group 3">							<circle id="Ellipse 7" cx="29.499" cy="27.5" r="26.5" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 8" cx="29.4996" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(-60 29.4996 27.5001)" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>							<ellipse id="Ellipse 9" opacity="0.4" cx="29.4998" cy="27.5001" rx="12.5007" ry="26.3904" transform="rotate(45 29.4998 27.5001)" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>						</g>					</svg>'), array('type' => 'values', 'settings' => object(stdClass), 'title' => 'Connectivité', 'svg' => '					<svg class="w-[49px] h-[42px] 3xl:w-[61px] 3xl:h-[53px]" viewbox="0 0 61 53" fill="none" xmlns="http://www.w3.org/2000/svg">						<path d="M30.5011 2.11621L2.1709 34.8696L30.5011 51.3022M30.5011 2.11621L59.0553 34.8696L30.5011 51.3022M30.5011 2.11621V51.3022" stroke="#06062F" stroke-width="2" stroke-linecap="round"/>						<path opacity="0.4" d="M30.5005 2V18.4368M30.5005 18.4368L1.94629 34.9812M30.5005 18.4368L59.0547 34.9812" stroke="#06062F" stroke-width="1.5" stroke-linecap="round" stroke-dasharray="3 3"/>					</svg>'))), array('type' => 'about-explore', 'settings' => object(stdClass), 'title' => '<p>Explorez les fonctionnalités de notre plateforme.</p>', 'services' => array(array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Louer', 'description' => '<p><strong>Une solution simple rapide et transparente</strong></p><p>&nbsp;</p><p>Que vous recherchiez une solution flexible ou un engagement long terme, STORM vous connecte directement aux propriétaires et bailleurs d\'actifs logistiques. Grâce à une interface fluide et à des données fiables, identifiez et louez l\'espace adapté à vos besoins, en toute confiance.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/louer', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Acheter', 'description' => '<p><strong>Investissez avec une vision claire et immédiate</strong></p><p>&nbsp;</p><p>Avec la fonctionnalité Acheter, STORM vous donne un accès direct aux entrepôts mis en vente par les propriétaires et bailleurs, pour saisir rapidement les meilleures opportunités du marché.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/acheter-bien', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => array('hidden' => false, 'schedules_enabled' => null, 'schedules' => null, 'segment_enabled' => null, 'segments' => null, 'target_groups_enabled' => null, 'target_groups' => null), 'title' => 'Pilotez vos actifs ', 'description' => '<p>Suivez en temps réel les performances de vos annonces, nombre de vues, nombre de clics, téléchargements de brochures - et transformez ces données en leviers d\'action concrets. Plus qu\'un outil de suivi, c\'est une véritable tour de contrôle digitale qui vous permet de piloter la commercialisation de vos entrepôts, d\'optimiser votre visibilité et d\'anticiper vos décisions. En un coup d\'oeil, vous savez où vous en êtes, où vous devez agir et maximiser vos opportunités.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/register', 'btnTarget' => '_blank'), array('type' => 'services', 'settings' => object(stdClass), 'title' => 'Données du marché', 'description' => '<p>Imaginez un outil unique qui cartographie l\'intégralité des entrepôts en France. En quelques clics, identifiez des actifs, générez des données de marché fiables et exportables, visualisez les dynamiques locales et régionales. Cet outil interactif transforme la cartographie en véritable levier de décision, vous donnant la capacité d\'analyser, comparer et exploiter les informations nécessaires pour anticiper vos choix immobiliers et logistiques avec une précision inégalée.</p>', 'image' => object(Media), 'btnText' => 'En savoir plus', 'btnLink' => 'https://storm.ewm.dev/fr/storm-map', 'btnTarget' => '_blank'))), array('type' => 'about-form', 'settings' => object(stdClass), 'title' => 'Contactez-nous', 'description' => '<p>N’hésitez pas à nous contacter directement ou à nous envoyer un message en remplissant le formulaire.</p>', 'form' => array('title' => 'Form', 'form' => array(array('type' => 'row', 'settings' => object(stdClass), 'field' => array(array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Prénom', 'field_name' => 'Prenom', 'field_class' => '', 'field_required' => true, 'field_gender' => true), array('type' => 'text', 'settings' => object(stdClass), 'field_label' => 'Nom', 'field_name' => 'Nom', 'field_class' => '', 'field_required' => false, 'field_gender' => false), array('type' => 'number', 'settings' => object(stdClass), 'field_label' => 'Telephone', 'field_name' => 'Telephone', 'field_class' => '', 'field_required' => true), array('type' => 'email', 'settings' => object(stdClass), 'field_label' => 'Email', 'field_name' => 'Email', 'field_class' => '', 'field_required' => true), array('type' => 'select', 'settings' => object(stdClass), 'field_label' => 'Service', 'field_name' => 'Service', 'field_class' => '', 'field_required' => false, 'field_values' => 'AchatVendre', 'field_default' => 'Service'), array('type' => 'textarea', 'settings' => object(stdClass), 'field_label' => 'Message', 'field_name' => 'Message', 'field_class' => '', 'field_required' => false), array('type' => 'checkbox', 'settings' => object(stdClass), 'field_values' => '<p>Je suis d\'accord avec les Termes et conditions et</p>', 'btnText' => 'la Politique de confidentialité', 'btnLink' => 'https://storm.ewm.dev/fr/politique-de-confidentialite'), array('type' => 'submit', 'settings' => object(stdClass), 'field_label' => 'Envoyer', 'field_class' => '', 'field_id' => '')))), 'messageTitle' => 'Email ', 'success' => 'Thank you for your email', 'success_content' => '', 'error' => 'Something wrong ! please try again later', 'error_content' => '', 'email_to' => 'b.benalaya@ewm.swiss', 'email_from' => 'b.benalaya@ewm.swiss')))), 'id' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'uuid' => 'cac5f473-d5c6-4834-9b95-7236e0444bd9', 'creator' => 1, 'changer' => 1, 'created' => object(DateTime), 'changed' => object(DateTime), 'template' => 'about', 'extension' => array('seo' => array('title' => '', 'description' => '', 'keywords' => '', 'canonicalUrl' => '', 'noIndex' => false, 'noFollow' => false, 'hideInSitemap' => false), 'excerpt' => array('title' => '', 'more' => '', 'description' => '', 'categories' => array(), 'tags' => array(), 'segments' => array(), 'icon' => array(), 'images' => array())), 'published' => object(DateTime), 'shadowBaseLocale' => null, 'webspaceKey' => 'storm', 'lastModified' => null, 'authored' => object(DateTime), 'author' => '1', 'localizations' => array('fr' => array('locale' => 'fr', 'url' => 'https://storm.ewm.dev/fr/qui-sommes-nous', 'country' => '', 'alternate' => true), 'en' => array('locale' => 'en', 'url' => 'https://storm.ewm.dev/en/about-us', 'country' => '', 'alternate' => true)), 'segments' => array(), 'request' => array('webspaceKey' => 'storm', 'webspaceName' => 'Storm', 'segmentKey' => null, 'portalKey' => 'storm', 'portalName' => 'Storm', 'defaultLocale' => 'fr', 'portalUrl' => 'storm.ewm.dev/fr', 'resourceLocatorPrefix' => '/fr', 'resourceLocator' => '/qui-sommes-nous')))
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:77)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->renderStructure(object(PageBridge), array(), false, false)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php:33)
  at Sulu\Bundle\WebsiteBundle\Controller\DefaultController->indexAction(object(PageBridge), false, false)
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:69)