{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/AeMMKYiGHyduZLOWDKWJ/SyNgVZ4OEnzMxBZlqgbZ/VcFqY_lAB.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addPropertyControls as n,ComponentPresetsConsumer as t,ControlType as a,Link as s}from\"framer\";import{motion as l}from\"framer-motion\";import*as i from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";let c=\"csVUGrCmo\",d=\"PEuS6f2Ya\",u=\"Idx8kWZCq\",p=\"MMHkEF98b\",m=\"WWEYZ68h5\",x=\"F2yLeYLWU\",h=\"guB5D2dow\",f=\"QfxeFwl5v\",g=\"rF0YxdBxT\",b=\"IVvpyOcVF\",w=\"wMWZpibOF\",v=\"CmVyUxFvl\",S=\"DonviNXrM\",j=(e,r)=>{if(e&&\"object\"==typeof e)return{...e,alt:r};},L=[{index:0,id:\"fJVEPqdiS\",[c]:\"Afterwork Jeux de Soci\\xe9t\\xe9\",[d]:\"afterwork-jeux-de-soci\\xe9t\\xe9\",[u]:j({src:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg\",srcSet:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg 1024w\"},\"\"),[p]:\"0024-05-23T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un After-work d\\xe9di\\xe9 \\xe0 nos coworkers. Au programme, jeux de soci\\xe9t\\xe9.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : After-work LVEB\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'afterwork se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"KsX2qTydA\",[b]:!0,[w]:!0,[v]:!1},{index:1,id:\"UWp7d6Sfq\",[c]:\"Petit-D\\xe9jeuner Continental\",[d]:\"petit-d\\xe9jeuner-continental-2\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-05-15T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner continental pour r\\xe9gal\\xe9 les adeptes du sal\\xe9 le matin.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"KsX2qTydA\",[b]:!1,[w]:!0,[v]:!1},{index:2,id:\"R_OIjUrwA\",[c]:\"Les Restos du Coeur - Collect\",[d]:\"les-restos-du-coeur-collect\",[u]:j({src:\"https://framerusercontent.com/images/C2uccDNEXYoedv38YYdUZ8G7LFM.jpg\",srcSet:\"https://framerusercontent.com/images/C2uccDNEXYoedv38YYdUZ8G7LFM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C2uccDNEXYoedv38YYdUZ8G7LFM.jpg 1024w\"},\"\"),[p]:\"2024-04-01T00:00:00.000Z\",[m]:\"9h\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Collect solidaire \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle s'engage tout au long du mois d'avril aux c\\xf4t\\xe9s des Restos du C\u0153ur. Nous devenons des points de collecte non seulement pour nos coworkers, mais aussi pour les r\\xe9sidents de l'\\xeele de Nantes.\"}),/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle vous invite \\xe0 soutenir cette cause en faisant un don alimentaire, hygi\\xe8ne. \"}),/*#__PURE__*/e(\"p\",{children:\"Nous sommes reconnaissants envers tous ceux qui participeront \\xe0 cette initiative et qui contribueront ainsi \\xe0 apporter un peu de confort \\xe0 ceux qui en ont le plus besoin. Merci pour votre pr\\xe9cieuse contribution.\"}),/*#__PURE__*/e(\"p\",{children:\"A tres vite \\xe0 La Ville est Belle\"})]}),[g]:\"KsX2qTydA\",[b]:!1,[w]:!0,[v]:!1},{index:3,id:\"GlW9HkK23\",[c]:\"Petit-D\\xe9jeuner bio et local \",[d]:\"petit-d\\xe9jeuner-bio-et-local\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-04-24T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner bio & local pour la journ\\xe9e internationale de la terre nourrici\\xe8re.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:4,id:\"fUXQn3Kh7\",[c]:\"Afterwork de l'Aid\",[d]:\"afterwork-de-l-aid\",[u]:j({src:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg\",srcSet:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg 1024w\"},\"\"),[p]:\"2024-04-18T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un After-work d\\xe9di\\xe9 \\xe0 nos coworkers. Au programme, un after sous le th\\xe8me de l'Aid.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : After-work LVEB\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'afterwork se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:5,id:\"Qc5Ico9vS\",[c]:\"Conf\\xe9rence French Produit\",[d]:\"conf\\xe9rence-french-produit\",[u]:j({src:\"https://framerusercontent.com/images/z8Yi2kU6UKvu5ZtJU4HbtKJCRo.jpg\",srcSet:\"https://framerusercontent.com/images/z8Yi2kU6UKvu5ZtJU4HbtKJCRo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z8Yi2kU6UKvu5ZtJU4HbtKJCRo.jpg 1024w\"},\"\"),[p]:\"2024-04-17T00:00:00.000Z\",[m]:\"18h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"French Produit, Favorise la sensibilit\\xe9, l'education et l'entraide autour des m\\xe9tiers du produit et de la culture. Propose une conf\\xe9rence sur le th\\xe8me du travail \\xe0 distance, des \\xe9quipes distribu\\xe9es, et la gestion de ses \\xe9quipes et de son produit.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(s,{href:\"https://www.meetup.com/fr-FR/frenchproduit-nantesbretagne/events/300164680/?_xtd=gqFyqTIyNzc2MjI0NqFwo2FwaQ%253D%253D&from=ref\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Inscription \"})})}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Conf\\xe9rence\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e \"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de French Produit, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:6,id:\"y_9waSsfE\",[c]:\"8e After de la Com' Responsable\",[d]:\"8e-after-de-la-com-responsable\",[u]:j({src:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp\",srcSet:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp 1024w\"},\"\"),[p]:\"2024-04-17T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Madison Communication, sp\\xe9cialiste en communication responsable, fait de nos locaux son lieu de rendez-vous mensuel pour organiser les afterworks de la communication autour de tables rondes abordant diverses th\\xe9matiques.\"}),/*#__PURE__*/e(\"p\",{children:\"Retrouver au programme une conf\\xe9rence de Simon Bonaventure sur l'accessibilit\\xe9 num\\xe9rique.\"}),/*#__PURE__*/r(\"p\",{children:[\"Les Afters de Madison Communication prochaines sessions : \",/*#__PURE__*/e(s,{href:\"https://madison-communication.com/nos-engagements/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Site internet Madison communication\"})})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Les afters de la com\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 25 participants (place limit\\xe9e)\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de madison communication, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-reception\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:7,id:\"eWx82AztF\",[c]:\"Soir\\xe9e ESPI - Job dating \",[d]:\"soir\\xe9e-espi-job-dating\",[u]:j({src:\"https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg\",srcSet:\"https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg 1024w\"},\"\"),[p]:\"2024-04-16T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Soir\\xe9e priv\\xe9e \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"L'ESPI, acteur de l'immobilier, le groupe ESPI est un \\xe9tablissement d'enseignement sup\\xe9rieur priv\\xe9. L'ESPI se rassemble pour une soir\\xe9e avec les alumines pour un job dating.\"}),/*#__PURE__*/e(\"p\",{children:\"Ouvert \\xe0 tous.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Job dating \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 18h00 \\xe0 22h00\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 120 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de l'ESPI, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" permettant d\u2019accueillir jusqu\u2019\\xe0 150 personnes debout.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:8,id:\"CdVFq_55Y\",[c]:\"Petit-D\\xe9jeuner des cloches \",[d]:\"petit-d\\xe9jeuner-des-cloches\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-04-10T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner sp\\xe9cial P\\xe2ques, plein de chocolat en vue.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:9,id:\"IIDCfKjr8\",[c]:\"Petit-D\\xe9jeuner Sp\\xe9cial Printemps\",[d]:\"petit-d\\xe9jeuner-sp\\xe9cial-printemps\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-03-27T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner sous le printemps avec un bar \\xe0 fruit.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:10,id:\"TBpcTUvLC\",[c]:\"Immofutur CINA : R\\xe9injecter de la productivit\\xe9 en ville malgr\\xe9 les freins r\\xe9glementaires\",[d]:\"immofutur-cina-r\\xe9injecter-de-la-productivit\\xe9-en-ville-malgr\\xe9-les-freins-r\\xe9glementaires\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2024-03-26T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:'Le CINA f\\xe9d\\xe8re l\\'ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Le CINA organise une conf\\xe9rence sur \"r\\xe9injecter de la productivit\\xe9 en ville malgr\\xe9 les freins r\\xe9glementaires\" pour une commission Immofutur'}),/*#__PURE__*/e(\"p\",{children:\"Ouvert \\xe0 tous.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Commission Immofutur\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 8h30 \\xe0 10h30\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:11,id:\"JHCK8fa6r\",[c]:\"Soir\\xe9e ESPI - Parrainage Pierre Leroy\",[d]:\"soir\\xe9e-espi-parrainage-pierre-leroy\",[u]:j({src:\"https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg\",srcSet:\"https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yjWGoRX85NK9LOSqoylvqHvfc.jpg 1024w\"},\"\"),[p]:\"2024-03-21T00:00:00.000Z\",[m]:\"18h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Soir\\xe9e priv\\xe9e \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"L'ESPI, acteur de l'immobilier, le groupe ESPI est un \\xe9tablissement d'enseignement sup\\xe9rieur priv\\xe9. L'ESPI se rassemble pour une soir\\xe9e parraine avec le parrain de promotion Pierre Leroy.\"}),/*#__PURE__*/e(\"p\",{children:\"Ouvert \\xe0 tous.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Soir\\xe9e parrainage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 18h00 \\xe0 22h00\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 120 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de l'ESPI, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" permettant d\u2019accueillir jusqu\u2019\\xe0 150 personnes debout.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:12,id:\"vn_diYpt9\",[c]:\"7e After de la Com' Responsable\",[d]:\"7e-after-de-la-com-responsable\",[u]:j({src:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp\",srcSet:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp 1024w\"},\"\"),[p]:\"2024-03-21T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Madison Communication, sp\\xe9cialiste en communication responsable, fait de nos locaux son lieu de rendez-vous mensuel pour organiser les afterworks de la communication autour de tables rondes abordant diverses th\\xe9matiques.\"}),/*#__PURE__*/e(\"p\",{children:'Retrouver au programme une conf\\xe9rence de Charlotte Jamet de la Kincepterie pour animer la table ronde sur \"organiser des \\xe9v\\xe8nements responsables\"'}),/*#__PURE__*/r(\"p\",{children:[\"Les Afters de Madison Communication prochaines sessions : \",/*#__PURE__*/e(s,{href:\"https://madison-communication.com/nos-engagements/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Site internet Madison communication\"})})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Les afters de la com\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 25 participants (place limit\\xe9e)\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de madison communication, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-reception\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:13,id:\"iUNC_RvU_\",[c]:\"Petit-D\\xe9jeuner Continental\",[d]:\"petit-d\\xe9jeuner-continental\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-03-20T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner continental pour r\\xe9gal\\xe9 les adeptes du sal\\xe9 le matin.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:14,id:\"khoO1Fjyl\",[c]:\"Odyssea Course contre le cancer du sein\",[d]:\"odyssea-course-contre-le-cancer-du-sein\",[u]:j({src:\"https://framerusercontent.com/images/se89CWp0iFjDDgMmOQnghRdaE.jpg\",srcSet:\"https://framerusercontent.com/images/se89CWp0iFjDDgMmOQnghRdaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/se89CWp0iFjDDgMmOQnghRdaE.jpg 1024w\"},\"\"),[p]:\"2024-03-17T00:00:00.000Z\",[m]:\"11h00\",[x]:\"Cath\\xe9drale St-Pierre\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"La Ville incarne des valeurs profondes qui lui tiennent \\xe0 c\u0153ur, et c'est pourquoi nos coworkers s'engagent activement dans des actions telles que la course Odyssea contre le cancer du sein \\xe0 Nantes. \"]}),/*#__PURE__*/e(\"p\",{children:\"Nous sommes \\xe0 la fois ravis et fiers de soutenir des causes aussi significatives, et nous nous engageons \\xe0 continuer d'y participer. Cet engagement envers des initiatives sociales et humanitaires refl\\xe8te notre engagement envers la communaut\\xe9 et notre d\\xe9sir de faire une diff\\xe9rence dans le monde qui nous entoure.\"}),/*#__PURE__*/e(\"p\",{children:\"Retrouvez-nous dimanche 17 Mars.\"})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:15,id:\"dCfvLTB2p\",[c]:\"Afterwork St Patrick\",[d]:\"afterwork-st-patrick\",[u]:j({src:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg\",srcSet:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg 1024w\"},\"\"),[p]:\"2024-03-14T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un After-work d\\xe9di\\xe9 \\xe0 nos coworkers. Au programme, un after sous le th\\xe8me de la St Patrick. \"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : After-work LVEB\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'afterwork se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:16,id:\"niiVpBkYV\",[c]:\"Commission CINA : mixit\\xe9 et redynamisation des entr\\xe9es de ville\",[d]:\"commission-cina-mixit\\xe9-et-redynamisation-des-entr\\xe9es-de-ville\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2024-03-12T00:00:00.000Z\",[m]:\"8h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le CINA f\\xe9d\\xe8re l'ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Le CINA organise un \\xe9v\\xe9nement ouvert \\xe0 tous, autour de l'organisation d'une commission sur la mixit\\xe9 et la redynamisation des entr\\xe9es de ville.\"}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Commission\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 8h30 \\xe0 10h30\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:17,id:\"nvzo3KP2i\",[c]:\"Petit-D\\xe9jeuner Sp\\xe9cial Muffin x Refectory\",[d]:\"petit-d\\xe9jeuner-sp\\xe9cial-muffin-x-refectory\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-02-28T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner organis\\xe9 par Refectory, \\xe0 d\\xe9guster des muffins, des cookies, des canel\\xe9s, et passer un bon moment en pr\\xe9vision pour bien d\\xe9jeuner.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:18,id:\"sb8otacnu\",[c]:\"Afterwork Nouvel Carnaval de Rio\",[d]:\"afterwork-nouvel-carnaval-de-rio\",[u]:j({src:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg\",srcSet:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg 1024w\"},\"\"),[p]:\"2024-02-22T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un After-work d\\xe9di\\xe9 aux coworkers tous les derniers jeudis du mois. Au programme, un after sous le soleil de Rio, mais sous le ciel nantais ! Une d\\xe9couverte des traditions br\\xe9siliennes attend nos coworkers. \uD83C\uDF1E \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : After-work LVEB\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'afterwork se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:19,id:\"aN43pkx2D\",[c]:\"6e After de la Com' Responsable\",[d]:\"6e-after-de-la-com-responsable\",[u]:j({src:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp\",srcSet:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp 1024w\"},\"\"),[p]:\"2024-02-21T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Madison Communication, sp\\xe9cialiste en communication responsable, fait de nos locaux son lieu de rendez-vous mensuel pour organiser les afterworks de la communication autour de tables rondes abordant diverses th\\xe9matiques.\"}),/*#__PURE__*/r(\"p\",{children:[\"Retrouver au programme une conf\\xe9rence de \",/*#__PURE__*/e(s,{href:\"https://www.linkedin.com/in/ACoAAA3_3XwBywuXQ2KeCgtdZH42-bGRcd3YwX0\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Adrien Paquin\"})}),\", le fondateur de The Next Playground sur L'IA dans la communication digitale\"]}),/*#__PURE__*/r(\"p\",{children:[\"Les Afters de Madison Communication prochaines sessions : \",/*#__PURE__*/e(s,{href:\"https://madison-communication.com/nos-engagements/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Site internet Madison communication\"})})]}),/*#__PURE__*/r(\"ul\",{style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Les afters de la com\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-751a8d80-e42a-4502-8629-6dc44ecb0a61, #ffffff)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 25 participants (place limit\\xe9e)\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de madison communication, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-reception\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/contact\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:20,id:\"hvNPzP2CF\",[c]:\"Petit-D\\xe9jeuner Sp\\xe9cial St-Valentin\",[d]:\"petit-d\\xe9jeuner-sp\\xe9cial-st-valentin\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-02-14T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Nos coworkers profiteront d'un petit-d\\xe9jeuner sp\\xe9cial Saint-Valentin, l'occasion pour eux de peut-\\xeatre trouver leur \\xe2me s\u0153ur, ou pas. En tout cas, ils pourront d\\xe9guster un d\\xe9jeuner gourmand.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:21,id:\"Unmw766Wm\",[c]:\"Petit-D\\xe9jeuner Sp\\xe9cial Chandeleur\",[d]:\"petit-dejeuner-sp\\xe9cial-chandeleur\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-01-31T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Parce que les cr\\xeapes mettent toujours tout le monde d'accord, nous proposons un petit d\\xe9jeuner sp\\xe9cial Chandeleur pour r\\xe9chauffer nos coworkers autour d'un moment convivial. Vous l'attendiez depuis l'ann\\xe9e derni\\xe8re, et il est enfin de retour.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:22,id:\"wiNGgPt1S\",[c]:\"Soir\\xe9e Kadran\",[d]:\"soir\\xe9e-kadran\",[u]:j({src:\"https://framerusercontent.com/images/oSk4DRiX4AYn1YPPhD570Thb13E.jpg\",srcSet:\"https://framerusercontent.com/images/oSk4DRiX4AYn1YPPhD570Thb13E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oSk4DRiX4AYn1YPPhD570Thb13E.jpg 1024w\"},\"\"),[p]:\"2024-01-30T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Kadran, plateforme d'ench\\xe8res en ligne de biens immobiliers, s'est r\\xe9uni pour discuter de leurs visualisations et objectifs pour 2024\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Soir\\xe9e Kadran \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 30 participants \"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de Kadran, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 50 personnes debout. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:23,id:\"nA1nVaIK5\",[c]:\"Afterwork Nouvel An Chinois\",[d]:\"after-work-nouvel-an-chinois\",[u]:j({src:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg\",srcSet:\"https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S9tLP9W0xcfGMq8kaXSL9n0ndu4.jpg 1024w\"},\"\"),[p]:\"2024-01-25T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un After-work d\\xe9di\\xe9 aux coworkers tous les derniers jeudis du mois. Pour notre premier afterwork de l'ann\\xe9e, nous le c\\xe9l\\xe9brons sur le th\\xe8me du Nouvel An chinois. C'est une occasion pour nos coworkers de d\\xe9guster des plats traditionnels tout en profitant de musique et de moments conviviales.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : After-work LVEB\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'afterwork se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:24,id:\"aX1n_4GOs\",[c]:\"5e After de la Com' Responsable \",[d]:\"les-afters-de-la-com-responsable-copy\",[u]:j({src:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp\",srcSet:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp 1024w\"},\"\"),[p]:\"2024-01-24T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Madison Communication, sp\\xe9cialiste en communication responsable, fait de nos locaux son lieu de rendez-vous mensuel pour organiser les afterworks de la communication autour de tables rondes abordant diverses th\\xe9matiques. \"}),/*#__PURE__*/r(\"p\",{children:[\"Retrouver au programme une conf\\xe9rence de Albin Wagener auteur de \",/*#__PURE__*/e(s,{href:\"https://www.fnac.com/a17571022/Albin-Wagener-Blablabla-en-finir-avec-le-bavardage-climatique\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"\\xab\\xa0Blablabla en finir avec le bavardage climatique\\xa0\\xbb\"})}),\" \"]}),/*#__PURE__*/r(\"p\",{children:[\"Les Afters de Madison Communication prochaines sessions : \",/*#__PURE__*/e(s,{href:\"https://madison-communication.com/nos-engagements/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Site internet Madison communication\"})}),\" \"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Les afters de la com \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 25 participants (place limit\\xe9e) \"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de madison communication, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:25,id:\"CLz97Ws37\",[c]:'Course \\xe0 Pied \"Journ\\xe9e Internationale F\\xe9minine\"',[d]:\"course-\\xe0-pied-f\\xe9minine\",[u]:j({src:\"https://framerusercontent.com/images/FnX9N3eWfK6yvRvoDomUgdInbNA.jpg\",srcSet:\"https://framerusercontent.com/images/FnX9N3eWfK6yvRvoDomUgdInbNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FnX9N3eWfK6yvRvoDomUgdInbNA.jpg 1024w\"},\"\"),[p]:\"2024-01-24T00:00:00.000Z\",[m]:\"12h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle vous invite \\xe0 nous rejoindre le mercredi 24 janvier de 12h30 \\xe0 13h30 pour une course \\xe0 pied en l'honneur de la Journ\\xe9e du Sport F\\xe9minin ainsi que de la Journ\\xe9e des Droits des Femmes.\"}),/*#__PURE__*/e(\"p\",{children:\"Nous partirons de La Ville est Belle Salle Agora pour parcourir l'\\xeele de Nantes pendant une petite heure..\"}),/*#__PURE__*/r(\"p\",{children:[\"Voici le lien pour vous inscrire \\xe0 la course \\xe0 pied : \",/*#__PURE__*/e(s,{href:\"https://forms.office.com/pages/responsepage.aspx?id=pifL21LtskGzCh4C2t8ypAjHOh3qpyFGkn9BGPY0nkNURFZKSkowUlNNMzE5M1dMQTJVMDVHV0tBUy4u&origin=lprLink\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Inscription ici.\"})})]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Course \\xe0 pied\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 heure \"})})]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:26,id:\"wA7E67UlH\",[c]:'Table Ronde \"Les Femmes de l\\'Immo\" 2e \\xc9dition',[d]:\"table-ronde-les-femmes-de-l-immo-2e-edition\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2024-01-19T00:00:00.000Z\",[m]:\"12h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le CINA f\\xe9d\\xe8re l'ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Donner la parole aux femmes de l'immobilier avec la Dr. Christine NASCHBERGER, professeure \\xe0 Audencia. Elle explorera le th\\xe8me \u201CFemmes & Argent\u201C, en tant qu'experte des sujets li\\xe9s \\xe0 l'\\xe9galit\\xe9, la diversit\\xe9 et l\u2019inclusion.\"}),/*#__PURE__*/e(\"p\",{children:\"Inscription mail : cinavirginie@cina.fr\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Table ronde \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Midi\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Tout au long de l'\\xe9v\\xe9nement, le CINA a b\\xe9n\\xe9fici\\xe9 d'outils informatiques, de micros, d'\\xe9crans et d'un vid\\xe9oprojecteur pour animer leur table ronde. \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:27,id:\"J0MaYcZrS\",[c]:\"Petit-D\\xe9jeuner Italien\",[d]:\"petit-dejeuner-sous-l-italie\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-01-17T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Pour notre deuxi\\xe8me petit-d\\xe9jeuner de l'ann\\xe9e, nous mettons \\xe0 l'honneur l'Italie en proposant un petit-d\\xe9jeuner mettant en avant leurs meilleures traditions. Un v\\xe9ritable voyage culinaire pour une pause bien m\\xe9rit\\xe9e pour nos coworkers.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:28,id:\"rIxJfQ4fC\",[c]:\"Rencontre Adh\\xe9rents Nantes Bureau des Congr\\xe8s \",[d]:\"rencontre-adh\\xe9rents-nantes-bureau-des-congr\\xe8s\",[u]:j({src:\"https://framerusercontent.com/images/srO3yvcmnStDGnqChQ4fjk7YY.webp\",srcSet:\"https://framerusercontent.com/images/srO3yvcmnStDGnqChQ4fjk7YY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/srO3yvcmnStDGnqChQ4fjk7YY.webp 1024w\"},\"\"),[p]:\"2024-01-16T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le Bureau des Congr\\xe8s de Nantes et Saint-Nazaire rassemble et organise des \\xe9v\\xe9nements cr\\xe9atifs et engag\\xe9s. Se r\\xe9unit dans nos locaux pour c\\xe9l\\xe9brer le lancement de notre adh\\xe9sion au sein de leur r\\xe9seau d'affaires. Une soir\\xe9e pour f\\xe9d\\xe9rer et se rencontrer autour d'un speed meeting sous un format ludique, afin de favoriser la mise en relation des adh\\xe9rents de la promo 2024. \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement :  Speed meeting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du Bureau des Congr\\xe8s de Nantes et Saint-Nazaire, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Programme de la soir\\xe9e : \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Accueil de la promotion 2024 du r\\xe9seau de membres du Bureau des Congr\\xe8s\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pr\\xe9sentation des repr\\xe9sentants \\xe9lus \\xe0 la gouvernance du Bureau des Congr\\xe8s\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Speed Meeting Fili\\xe8res : un format ludique pour favoriser la mise en relation\\xa0des acteurs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cocktail d\\xeenatoire\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:29,id:\"emKDvMmll\",[c]:\"Petit-D\\xe9jeuner Sp\\xe9cial \\xc9pihanie\",[d]:\"petit-dejeuner-sp\\xe9ciale-\\xe9pihanie\",[u]:j({src:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg\",srcSet:\"https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jTkfHmCwHVnQ3jMlKFW9gOAfjU.jpg 1024w\"},\"\"),[p]:\"2024-01-03T00:00:00.000Z\",[m]:\"09h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\" \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle organise un petit-d\\xe9jeuner d\\xe9di\\xe9 aux coworkers toutes les deux semaines. Pour lancer les festivit\\xe9s et pr\\xe9senter nos meilleurs v\u0153ux, nos coworkers se sont r\\xe9unis autour d'un petit-d\\xe9jeuner sur le th\\xe8me de l'\\xc9piphanie. Une occasion pour tous de d\\xe9buter l'ann\\xe9e et le travail dans une ambiance positive.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Petit-d\\xe9jeuner LVEB\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le petit-d\\xe9jeuner se d\\xe9roule dans l'espace cuisine\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:30,id:\"ayIiDzLIP\",[c]:\"Commission Immobilier Habitat\",[d]:\"cina\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2023-12-19T00:00:00.000Z\",[m]:\"8h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le CINA f\\xe9d\\xe8re l\u2019ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Les acteurs de l'immobilier de demain se sont r\\xe9unis pour la commission Immobilier d'entreprise et habitat du Club Immo Nantes Atlantique.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Commission Immobilier habitat\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 matin\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 60 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont eu acc\\xe8s \\xe0 l'espace restauration pour un petit-d\\xe9jeuner \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:31,id:\"bT_PbEbdQ\",[c]:\"Soir\\xe9e Bouygues Telecom\",[d]:\"bouygues-telecom-repas-de-fin-d-ann\\xe9e\",[u]:j({src:\"https://framerusercontent.com/images/sbIRFV6LLBEx3eucYgsU6N7f3w.webp\",srcSet:\"https://framerusercontent.com/images/sbIRFV6LLBEx3eucYgsU6N7f3w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/sbIRFV6LLBEx3eucYgsU6N7f3w.webp 1024w\"},\"\"),[p]:\"2023-12-13T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Bouygues Telecom s'est retrouv\\xe9 dans nos locaux pour un repas de fin d'ann\\xe9e. Au programme : DJ, service traiteur et photo box pour animer leurs \\xe9quipes et profiter d'un moment convivial.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Soir\\xe9e d'entreprise \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 70 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de Bouygues Telecom, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 150 personnes debout. \"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont b\\xe9n\\xe9fici\\xe9 de l'acc\\xe8s \\xe0 l'espace cuisine avec un traiteur pour un d\\xeener d\\xeenatoire comprenant des mange-debout. Ainsi qu'une personne \\xe0 temps plein \\xe9tait d\\xe9di\\xe9e \\xe0 la gestion de l'\\xe9v\\xe9nement.\"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:32,id:\"cqsIIvhZj\",[c]:\"S\\xe9minaire Mairie de Vertou\",[d]:\"mairie-de-vertou\",[u]:j({src:\"https://framerusercontent.com/images/ctqcalllv1fjvQI7BIL434j1jHo.webp\",srcSet:\"https://framerusercontent.com/images/ctqcalllv1fjvQI7BIL434j1jHo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ctqcalllv1fjvQI7BIL434j1jHo.webp 1024w\"},\"\"),[p]:\"2023-12-12T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Mairie de Vertou s'est r\\xe9unie pour une conf\\xe9rence ax\\xe9e sur le management, abordant les th\\xe9matiques d'un management participatif et bienveillant au sein des diff\\xe9rentes structures de la mairie.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : S\\xe9minaire sur le management\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 journ\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 60 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de la Mairie de Vertou, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont eu acc\\xe8s \\xe0 l'espace restauration tout au long de la journ\\xe9e, comprenant un buffet sucr\\xe9 mis \\xe0 leur disposition. \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:33,id:\"a8LfkkddF\",[c]:\"Jury de cl\\xf4ture incubateur \\xc9tat'LIN\",[d]:\"etat-line\",[u]:j({src:\"https://framerusercontent.com/images/yofzVF6iXWynfuORCHrHxxwOc.webp\",srcSet:\"https://framerusercontent.com/images/yofzVF6iXWynfuORCHrHxxwOc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yofzVF6iXWynfuORCHrHxxwOc.webp 1024w\"},\"\"),[p]:\"2023-12-08T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Captation vid\\xe9o\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"\\xc9tat'LIN, au sein de la Pr\\xe9fecture de la R\\xe9gion Pays de la Loire, vise \\xe0 accompagner les services de l\u2019\\xc9tat r\\xe9gionaux dans leur processus de transformation publique. \\xc0 cet effet, une captation vid\\xe9o destin\\xe9e \\xe0 YouTube a \\xe9t\\xe9 mise en place pour retransmettre l'\\xe9v\\xe9nement sur leur cha\\xeene en 4k. \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Jury de cl\\xf4ture incubateur captation vid\\xe9o\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 25 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins d'\\xc9tat'LIN, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Pendant les interludes, les participants d'\\xc9tat'LIN ont pu b\\xe9n\\xe9ficier d'un service de captation sur mesure, nous avons mis en place une captation vid\\xe9o en 4K pour retranscrire en haute d\\xe9finition leur \\xe9v\\xe9nement.\"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:34,id:\"tAMA3DFx4\",[c]:\"Soir\\xe9e 'P'tit Beurre Quizz'\",[d]:\"externatic\",[u]:j({src:\"https://framerusercontent.com/images/piyIF6JiDgOjmp9IQDlT4JQMXY.webp\",srcSet:\"https://framerusercontent.com/images/piyIF6JiDgOjmp9IQDlT4JQMXY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/piyIF6JiDgOjmp9IQDlT4JQMXY.webp 1024w\"},\"\"),[p]:\"2023-11-30T00:00:00.000Z\",[m]:\"8h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Externatic, expert en informatique, a r\\xe9uni ses \\xe9quipes lors d'une soir\\xe9e pour un \\xe9v\\xe9nement Tech rassemblant les communaut\\xe9s Mobiles, avec comme th\\xe8me un jeu \\\"P'tit Beurre Quizz\\\" suivi d'un buffet d\\xeenatoire et d'un moment d'\\xe9change.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Soir\\xe9e P'tit Beurre Quizz\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 soir\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 70 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins d'Externatic, nous avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. Tout au long de la soir\\xe9e, l'\\xe9quipe d'Externatic a particip\\xe9 \\xe0 des jeux ludiques \\\"Burger Quizz\\\". Nous avons mis \\xe0 leur disposition des \\xe9quipements informatiques, des micros, des \\xe9crans et un vid\\xe9oprojecteur afin de dynamiser au mieux leur \\xe9v\\xe9nement.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:35,id:\"IC0zsazRy\",[c]:\"Baltis \",[d]:\"baltis\",[u]:j({src:\"https://framerusercontent.com/images/37ie3FMaf2ACE6TsChpyvSRQoyo.jpg\",srcSet:\"https://framerusercontent.com/images/37ie3FMaf2ACE6TsChpyvSRQoyo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/37ie3FMaf2ACE6TsChpyvSRQoyo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/37ie3FMaf2ACE6TsChpyvSRQoyo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/37ie3FMaf2ACE6TsChpyvSRQoyo.jpg 3936w\"},\"\"),[p]:\"2023-11-29T00:00:00.000Z\",[m]:\"8h00\",[x]:\"La Ville est Belle - Espace Agora\",[h]:\"0\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Baltis\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!1,[v]:!1},{index:36,id:\"DIQy7dUdK\",[c]:\"S\\xe9minaire Wavestone\",[d]:\"wavestone\",[u]:j({src:\"https://framerusercontent.com/images/NHPSm8xnhpfa7ilBuB58z1gmPQ.webp\",srcSet:\"https://framerusercontent.com/images/NHPSm8xnhpfa7ilBuB58z1gmPQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NHPSm8xnhpfa7ilBuB58z1gmPQ.webp 1024w\"},\"\"),[p]:\"2023-11-28T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Wavestone, cabinet d'expertise dans le digital, propose \\xe0 ses \\xe9quipes de se r\\xe9unir pour un s\\xe9minaire ax\\xe9 sur le management.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : S\\xe9minaire sur le management \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Apr\\xe8s-midi\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 55 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de Wavestones, nous avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. Tout au long de l'\\xe9v\\xe9nement, l'\\xe9quipe de Wavestones a b\\xe9n\\xe9fici\\xe9 d'outils informatiques, de micros, d'\\xe9crans et d'un vid\\xe9oprojecteur pour animer leur s\\xe9minaire.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:37,id:\"oNoKPQKjG\",[c]:\"Afterwork/Concert Moraline [Les Talents LVEB]\",[d]:\"moraline-alent-lveb\",[u]:j({src:\"https://framerusercontent.com/images/EtUSgScvmlq5gVLapad5CBcW20M.png\",srcSet:\"https://framerusercontent.com/images/EtUSgScvmlq5gVLapad5CBcW20M.png?scale-down-to=512 512w,https://framerusercontent.com/images/EtUSgScvmlq5gVLapad5CBcW20M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EtUSgScvmlq5gVLapad5CBcW20M.png 2000w\"},\"\"),[p]:\"2023-11-23T00:00:00.000Z\",[m]:\"17h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"A La Ville est Belle, nous encourageons nos coworkers \\xe0 partager leurs talents & passions. Dans cette optique, nous avons inaugur\\xe9 un \\xe9v\\xe9nement sp\\xe9cial intitul\\xe9 'Les Talents LVEB', permettant \\xe0 chaque r\\xe9sident de notre espace de coworking de mettre en lumi\\xe8re ses talents\"}),/*#__PURE__*/e(\"p\",{children:'Pour d\\xe9buter notre \\xe9dition des talents LVEB lors de nos afterworks mensuels, nous avons d\\xe9couvert le talent de Na\\xebl de l\\'entreprise Urbasolar, avec son projet intitul\\xe9 \"Moraline\" pour un live \\xe9lectro.'}),/*#__PURE__*/r(\"p\",{children:[\"En attendant la d\\xe9couverte de notre prochain talent, vous pouvez retrouver Moraline sur : \",/*#__PURE__*/e(s,{href:\"https://soundcloud.com/moralin\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Deezer / Spotify / SoundCloud\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:38,id:\"x8xlEAi2U\",[c]:\"3e Afters de la Com' Responsable\",[d]:\"madison-communication\",[u]:j({src:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp\",srcSet:\"https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fAllzm9wlYzGk8OCO57O9pVkXBw.webp 1024w\"},\"\"),[p]:\"2023-11-22T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Madison Communication, sp\\xe9cialiste en communication responsable, fait de nos locaux son lieu de rendez-vous mensuel pour organiser les afterworks de la communication autour de tables rondes abordant diverses th\\xe9matiques. \"}),/*#__PURE__*/r(\"p\",{children:[\"Les Afters de Madison Communication se poursuivent en 2024. Pour restez inform\\xe9.e : \",/*#__PURE__*/e(s,{href:\"https://madison-communication.com/nos-engagements/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Site internet Madison communication\"})}),\" \"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Les afters de la com \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 15 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de madison communication, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 25 personnes assises. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:39,id:\"mayIaVZqR\",[c]:\"S\\xe9minaire Vinci Energies France\",[d]:\"vinci-energies\",[u]:j({src:\"https://framerusercontent.com/images/pP5Ikz9cBNl6a48HOojUTrRVnWs.webp\",srcSet:\"https://framerusercontent.com/images/pP5Ikz9cBNl6a48HOojUTrRVnWs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pP5Ikz9cBNl6a48HOojUTrRVnWs.webp 1024w\"},\"\"),[p]:\"2023-11-22T00:00:00.000Z\",[m]:\"8h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"VINCI Energies, groupe d'accompagnement et d'\\xe9nergie, s'est r\\xe9uni lors d'un s\\xe9minaire de direction r\\xe9unissant tous les dirigeants des diff\\xe9rentes filiales VINCI.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : S\\xe9minaire\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 2 journ\\xe9es \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 60 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de VINCI, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont pu profiter de l\u2019espace restauration tout au long des deux journ\\xe9es avec un service traiteur pour le petit-d\\xe9jeuner, le d\\xe9jeuner et le go\\xfbter.\"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:40,id:\"hdpHKojJG\",[c]:\"R\\xe9trospective LinkedIn 2023\",[d]:\"linkedin\",[u]:j({src:\"https://framerusercontent.com/images/cES1UkpOpFkIXdaIBVvCmAb42c.webp\",srcSet:\"https://framerusercontent.com/images/cES1UkpOpFkIXdaIBVvCmAb42c.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cES1UkpOpFkIXdaIBVvCmAb42c.webp 1024w\"},\"\"),[p]:\"2023-11-16T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"LinkedIn a pr\\xe9senter sa r\\xe9trospective de l'ann\\xe9e 2023 et se fixer de nouveaux objectifs pour 2024 dans un cadre chaleureux avec un petit d\\xe9jeuner sur mesure. \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : R\\xe9trospective 2023 \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Matin\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 50 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de LinkedIn, nous avons r\\xe9servez \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'l\u2019espace conf\\xe9rence \"Agora\"'})}),\" permettant d\u2019accueil jusqu\u2019\\xe0 80 personnes assises. Durant tout l\u2019\\xe9v\\xe9nement, l\u2019\\xe9quipe de LinkedIn a b\\xe9n\\xe9ficier d\u2019outils pour animer leur r\\xe9trospective avec un vid\\xe9oprojecteur, un micro et des enceintes.\"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont pu savourer un petit-d\\xe9jeuner propos\\xe9 par nos services pour bien commencer la journ\\xe9e.\"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})})]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:41,id:\"P2uQcySxJ\",[c]:\"15 Ans Guide de la Com'\",[d]:\"com-m\\xe9dia-la-ville-est-belle\",[u]:j({src:\"https://framerusercontent.com/images/hNiOfmfWKGgxhMb5YdKb6a1Iqg.webp\",srcSet:\"https://framerusercontent.com/images/hNiOfmfWKGgxhMb5YdKb6a1Iqg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hNiOfmfWKGgxhMb5YdKb6a1Iqg.webp 1024w\"},\"\"),[p]:\"2023-10-19T00:00:00.000Z\",[m]:\"18h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle, en partenariat avec Com&M\\xe9dia, a accueilli les dirigeants de la communication lors de la neuvi\\xe8me \\xe9dition du guide de la com.\"}),/*#__PURE__*/e(\"p\",{children:\"Com&M\\xe9dias est un \\xe9diteur sp\\xe9cialis\\xe9 dans l'actualit\\xe9 de la communication, du marketing, du digital et des m\\xe9dias dans la r\\xe9gion Ouest.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Soir\\xe9e partenaire \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 soir\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 150 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins, nous avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. \"]}),/*#__PURE__*/e(\"p\",{children:\"La soir\\xe9e a d\\xe9but\\xe9 par un concert suivi d'un ap\\xe9ritif d\\xeenatoire pour lancer la nouvelle \\xe9dition du guide. \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:42,id:\"ZxClddHkY\",[c]:\"Guillaume PERRET & C\\xe9cile LACHARME\",[d]:\"guillaume-perret-c\\xe9cile-lacharme\",[u]:j({src:\"https://framerusercontent.com/images/lRYYS2yWTLrO8iAZCqNDHeeVo.png\",srcSet:\"https://framerusercontent.com/images/lRYYS2yWTLrO8iAZCqNDHeeVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/lRYYS2yWTLrO8iAZCqNDHeeVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lRYYS2yWTLrO8iAZCqNDHeeVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lRYYS2yWTLrO8iAZCqNDHeeVo.png 2560w\"},\"\"),[p]:\"2023-10-19T00:00:00.000Z\",[m]:\"18h30\",[x]:\"La Ville est Belle - Espace Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Sax Jazz & Violoncelle N\\xe9o-Classique\"}),/*#__PURE__*/e(\"p\",{children:\"Guillaume Perret est consid\\xe9r\\xe9 comme l'un des meilleurs saxophonistes fran\\xe7ais. Enfant terrible du jazz, il navigue depuis une vingtaine d'ann\\xe9e dans les festivals internationaux aux c\\xf4t\\xe9 des plus grandes stars du genre. Passionn\\xe9 par les musiques \\xe9lectroniques, il transforme parfois radicalement le son de son instrument \\xe0 l'aide de p\\xe9dales. Il compose pour le th\\xe9\\xe2tre, pour orchestre, big band, trios ou ensemble \\xe9lectriques. Thomas Pesquet a jou\\xe9 ses musiques dans l'espace, il a d'ailleurs sign\\xe9 la BO du film 16 levers de soleil sur l'aventure de l'astronaute. Il est aussi derri\\xe8re le g\\xe9n\\xe9rique de l'\\xe9mission \\\"interdit d'interdire\\\" de Tadde\\xef. Alors qu'il pr\\xe9pare la sortie d'un nouvel album, il invite \\xe0 \\\"La Ville est Belle\\\" la jeune violoncelliste C\\xe9cile Lacharme, dont le r\\xe9pertoire bas\\xe9 sur une \\xe9criture minimaliste n\\xe9o classique \\xe9voque les grand paysages nordiques.\"}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/tJrCUkLrruo?feature=shared\"})})}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/uLiePP2rQ00?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!1,[v]:!1},{index:43,id:\"ri2YhIC_v\",[c]:\"Concert AllttA\",[d]:\"alltta\",[u]:j({src:\"https://framerusercontent.com/images/q66ahPIckS9CjtH4iFC4r7QxQ.jpg\",srcSet:\"https://framerusercontent.com/images/q66ahPIckS9CjtH4iFC4r7QxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q66ahPIckS9CjtH4iFC4r7QxQ.jpg 860w\"},\"\"),[p]:\"2023-10-19T00:00:00.000Z\",[m]:\"18h30\",[x]:\"La Ville est Belle - Salle Agora \",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/r(\"p\",{children:[\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working pour les faiseurs de la ville de demain, sont fiers d'accueillir le groupe AllttA. Pour une saison de concerts d\\xe9di\\xe9s \\xe0 nos coworkers et au public externe. Venez assister en live au tournage des \\xe9missions du Miroir des Futurs dans les locaux de La Ville est Belle. la saison, nous avons le plaisir de vous pr\\xe9senter le duo franco-am\\xe9ricain de hip-hop inclassable \",/*#__PURE__*/e(\"strong\",{children:\"AllttA\"}),\". C'est l'occasion de d\\xe9couvrir leur musique hors norme et de vivre une exp\\xe9rience unique.\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Concert AllttA\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le concert est film\\xe9 et d\\xe9di\\xe9 aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"Hiphop Electro\"}),/*#__PURE__*/e(\"p\",{children:\"AllttA, c\u2019est l\u2019alliance hiphop et \\xe9lectronique d\u2019un producteur hors norme et d\u2019un MC \\xe9lectrique. Le premier, 20syl, est un artiste prot\\xe9iforme de grand talent dont les projets C2C - 4x champions du monde de scratch et 4 victoires de la musique - et Hocus Pocus - mythique groupe fran\\xe7ais de hiphop acoustique- ont marqu\\xe9 le paysage musical international, tout comme ses remixs pour Kendrick Lamar et Ed Sheeran. Le deuxi\\xe8me est Mr J Medeiros rappeur du cultissime groupe de hiphop de Los Angeles \\xab The Procussions \\xbb et de \\xab Knives \\xbb form\\xe9 avec les musiciens de Lady Gaga. Il a \\xe9galement collabor\\xe9 avec Deluxe, Thylacine et Caravane Palace.\"}),/*#__PURE__*/e(\"p\",{children:'Apr\\xe8s leur track \"Savages\" explorant l\u2019usage d\u2019une IA pour faire un nouveau tube de Jay-Z qui a fait un buzz mondial, troubl\\xe9 la presse internationale et les plus proches collaborateurs du rapper, le duo vient de sortir le double album concept \\xab Curio \\xbb, bourr\\xe9 de bangers jouissifs, de flows virtuoses et d\u2019orchestrations \\xe9piques et luxuriantes.'}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Am212pKRRqU?feature=shared\"})})}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/fFHQDN5-QWo?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:44,id:\"XEoVjF5Wj\",[c]:\"Conf\\xe9rence de Presse\",[d]:\"cina-conf\\xe9rence-de-presse\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2023-10-12T00:00:00.000Z\",[m]:\"12h00\",[x]:\"La Ville est Belle - Espace Plaza\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le CINA f\\xe9d\\xe8re l\u2019ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Les acteurs de la ville de demain se sont r\\xe9unis pour r\\xe9pondre aux enjeux \\xe9conomiques du territoire lors d'une table ronde pour une conf\\xe9rence de presse.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Conference de presse \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 matin\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 20 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 25 personnes assises. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:45,id:\"VElV3mqcm\",[c]:\"S\\xe9minaire Cegelec\",[d]:\"cegelec-loire-ocean\",[u]:j({src:\"https://framerusercontent.com/images/OGkrSm2gdBSSKyJCSS2CM04Bmw.webp\",srcSet:\"https://framerusercontent.com/images/OGkrSm2gdBSSKyJCSS2CM04Bmw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/OGkrSm2gdBSSKyJCSS2CM04Bmw.webp 1024w\"},\"\"),[p]:\"2023-10-11T00:00:00.000Z\",[m]:\"12h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Cegelec, sp\\xe9cialiste dans la conception et la r\\xe9alisation de syst\\xe8mes d\u2019\\xe9quipements \\xe9lectrom\\xe9caniques, a organis\\xe9 un s\\xe9minaire cr\\xe9atif ax\\xe9 sur le team building \\xe0 travers des ateliers ind\\xe9pendants.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Team building cr\\xe9atif \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 journ\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 15 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de Cegelec, nous avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 25 personnes assises. Tout au long de l'\\xe9v\\xe9nement, l'\\xe9quipe de Cegelec a b\\xe9n\\xe9fici\\xe9 d'outils informatiques, de micros, d'\\xe9crans et d'un vid\\xe9oprojecteur pour animer leur team building cr\\xe9atif, visant \\xe0 rebooster les \\xe9quipes\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:46,id:\"guLn0hq9J\",[c]:'Table Ronde \"Les Femmes de l\\'Immo\"',[d]:\"cina-les-femmes-de-l-immo\",[u]:j({src:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp\",srcSet:\"https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yan38Iw0bbgispASfSrbSdUHyBQ.webp 1024w\"},\"\"),[p]:\"2023-10-06T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le CINA f\\xe9d\\xe8re l'ensemble des m\\xe9tiers de la fili\\xe8re immobili\\xe8re sur le territoire. Donner la parole aux femmes de l'immobilier pour explorer les attentes et \\xe9volutions de la g\\xe9n\\xe9ration Z dans ce secteur. Soixante femmes ont particip\\xe9 \\xe0 cette exploration des attentes changeantes des jeunes professionnelles.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(s,{href:\"https://www.informateurjudiciaire.fr/actualites/generation-z-comment-les-attentes-des-femmes-ont-evolue/#.Y-YYnHI40jU.linkedin\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Lien vers l'article \"})})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Table ronde \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 matin\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 60 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins du CINA, r\\xe9sidant au sein de nos locaux La Ville est Belle, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\" pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/e(\"p\",{children:\"Tout au long de l'\\xe9v\\xe9nement, le CINA a b\\xe9n\\xe9fici\\xe9 d'outils informatiques, de micros, d'\\xe9crans et d'un vid\\xe9oprojecteur pour animer leur table ronde. \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:47,id:\"IIFEmroPD\",[c]:\"Concert Samir Aouad\",[d]:\"samir-aouad\",[u]:j({src:\"https://framerusercontent.com/images/5kHGBVJSZnhb52xm8WZLUgMn7U.jpg\",srcSet:\"https://framerusercontent.com/images/5kHGBVJSZnhb52xm8WZLUgMn7U.jpg?scale-down-to=1024 752w,https://framerusercontent.com/images/5kHGBVJSZnhb52xm8WZLUgMn7U.jpg?scale-down-to=2048 1504w,https://framerusercontent.com/images/5kHGBVJSZnhb52xm8WZLUgMn7U.jpg 1683w\"},\"\"),[p]:\"2023-09-28T00:00:00.000Z\",[m]:\"13h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working pour les cr\\xe9ateurs de la ville de demain, sont fiers d'accueillir Samir Aouad pour une saison de concerts d\\xe9di\\xe9s \\xe0 nos coworkers ainsi qu'au public externe.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Concert Samir Aouad\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : midi\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le concert est film\\xe9 et d\\xe9di\\xe9 aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"Musiques Arabes\"}),/*#__PURE__*/e(\"p\",{children:\"SAMIR AOUAD a grandi dans la vibrante ville de Casablanca, au Maroc, o\\xf9 il fait ses premiers pas dans le monde de la musique. Il commence l\u2019apprentissage du oud \\xe0 huit ans, sur les traces de son oncle Haj Youness, l\u2019un des plus c\\xe9l\\xe8bre pratiquant de ce luth arabe. Sa virtuosit\\xe9, ses talents d\u2019improvisateur et son ouverture lui permettent de collaborer avec des artistes calligraphes, po\\xe8tes, danseurs et des musiciens venus d\u2019horizons vari\\xe9s, de la culture bretonne au monde \\xe9lectronique en passant par le flamenco ou le rock. Sa musique nous plonge dans un voyage riche, moderne, contrast\\xe9, influenc\\xe9 par le jazz, les musiques arabes, ottomanes et andalouses. Ses compositions, empreintes de gravit\\xe9, envo\\xfbtantes, puisent leurs \\xe9motions profondes dans son histoire personnelle et r\\xe9v\\xe8lent la diversit\\xe9 des rencontres et des cultures qui ont marqu\\xe9 son parcours.\"}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/k_p0VY846Rw?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:48,id:\"fjMRArSiG\",[c]:\"20 ans l'Adresse & 4IMMO\",[d]:\"20-ans-l-adresse\",[u]:j({src:\"https://framerusercontent.com/images/K6rqIXBaaZUzEYWwkN8fE70h1vI.webp\",srcSet:\"https://framerusercontent.com/images/K6rqIXBaaZUzEYWwkN8fE70h1vI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K6rqIXBaaZUzEYWwkN8fE70h1vI.webp 1024w\"},\"\"),[p]:\"2023-09-22T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Plaza\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"L'Adresse & 4IMMo, agences immobili\\xe8res pr\\xe9sentes dans toute la France depuis 20 ans, s'est r\\xe9unie lors d'un s\\xe9minaire cr\\xe9atif consacr\\xe9 \\xe0 l'art de la photographie et de la peinture. Des professionnels ont anim\\xe9 les ateliers pour les participants. \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : S\\xe9minaire cr\\xe9atif \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 journ\\xe9e \"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 35 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de L'adresse & 4IMMO, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"ZT6u9iiHv\"},openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de r\\xe9ception \"Plaza\"'})}),\" permettant d\u2019accueillir jusqu\u2019\\xe0 50 personnes debout ainsi que notre rooftop. \"]}),/*#__PURE__*/e(\"p\",{children:\"Les participants ont pu profiter d'un petit-d\\xe9jeuner dans nos locaux, accompagn\\xe9 d'un d\\xe9jeuner et d'un go\\xfbter propos\\xe9s par un traiteur. \"}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:49,id:\"y6Y1JikN0\",[c]:\"Nantes Digitale Week\",[d]:\"nantes-digitale-week\",[u]:j({src:\"https://framerusercontent.com/images/VKIEK6lUaloDpOIqT94L8Tn4tBQ.webp\",srcSet:\"https://framerusercontent.com/images/VKIEK6lUaloDpOIqT94L8Tn4tBQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VKIEK6lUaloDpOIqT94L8Tn4tBQ.webp 1024w\"},\"\"),[p]:\"2023-09-19T00:00:00.000Z\",[m]:\"9h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Ouvert \\xe0 tous \",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"La Ville est Belle, en partenariat avec Beapp, a accueilli une conf\\xe9rence lors de La Nantes Digital Week. Les entreprises pr\\xe9sentes ont eu l'opportunit\\xe9 de s'initier \\xe0 une d\\xe9marche de num\\xe9rique responsable visant \\xe0 r\\xe9duire leur impact environnemental et social pour r\\xe9ussir leur transition vers un num\\xe9rique plus responsable.\"}),/*#__PURE__*/e(\"p\",{children:'Beapp a r\\xe9uni les acteurs de La Nantes Digital Week autour du th\\xe8me \"R\\xe9ussir sa transition vers un Num\\xe9rique Responsable en tant qu\\'entreprise\".'}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Nantes Digital Week\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : 1 journ\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 60 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de BEAPP, ancien r\\xe9sident de La Ville est Belle, nous avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"eOyv6zef8\",[b]:!1,[w]:!0,[v]:!1},{index:50,id:\"WW74T_l0u\",[c]:\"La Matinale Nantes M\\xe9tropole\",[d]:\"la-matinale-nantes-metropole\",[u]:j({src:\"https://framerusercontent.com/images/L8AGuMLwSzO9FbeT8IbZ6on5qNA.webp\",srcSet:\"https://framerusercontent.com/images/L8AGuMLwSzO9FbeT8IbZ6on5qNA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/L8AGuMLwSzO9FbeT8IbZ6on5qNA.webp 1024w\"},\"\"),[p]:\"2023-09-07T00:00:00.000Z\",[m]:\"8h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Priv\\xe9\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Nantes M\\xe9tropole, qui porte les grands projets structurants du territoire de la m\\xe9tropole, s'est r\\xe9unit autour d'un s\\xe9minaire de direction. \"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : S\\xe9minaire\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Le temps d'une matin\\xe9e\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nombre de personnes : 30 participants\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre aux besoins de Nantes M\\xe9tropole, nous leur avons r\\xe9serv\\xe9 la \",/*#__PURE__*/e(s,{href:\"https://www.lavilleestbelle.fr/salles-de-conference\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", permettant d\u2019accueillir jusqu\u2019\\xe0 80 personnes assises. \"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:51,id:\"TkUduPxNN\",[c]:\"Concert Geoffrey Le Goaziou\",[d]:\"geoffrey-le-goaziou\",[u]:j({src:\"https://framerusercontent.com/images/twPtC0BuqNnEsP5twFBvZvRHgN4.jpg\",srcSet:\"https://framerusercontent.com/images/twPtC0BuqNnEsP5twFBvZvRHgN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/twPtC0BuqNnEsP5twFBvZvRHgN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/twPtC0BuqNnEsP5twFBvZvRHgN4.jpg 1200w\"},\"\"),[p]:\"2023-07-16T00:00:00.000Z\",[m]:\"13h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working pour les cr\\xe9ateurs de la ville de demain, sont fiers d'accueillir Geoffrey Le Goaziou pour une saison de concerts d\\xe9di\\xe9s \\xe0 nos coworkers ainsi qu'au public externe.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Concert Geoffrey Le Goaziou\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : midi\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le concert est film\\xe9 et d\\xe9di\\xe9 aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"Folk\"}),/*#__PURE__*/e(\"p\",{children:\"Avec pour seuls instruments sa guitare et sa voix a\\xe9rienne, Geoffrey Le Goaziou livre une musique scintillante et intimiste, inspir\\xe9e par les grands espaces et la nature. Auteurcompositeur, il est un fervent partisan du minimalisme et de l'auto-production. Son premier album \\\"Somewhere Quiet\\\" est une ode \\xc3 la vie et \\xc3 la simplicit\\xe9. Enregistr\\xe9 en partie face \\xe0 la mer ou dans un refuge en pleine montage, il \\xe9voque un monde int\\xe9rieur en qu\\xeate d'apaisement. Ses influences diverses puisent principalement dans la folk moderne mais aussi la pop et les musiques rock, laissant r\\xe9sonner des artistes tels que The Tallest Man on Earth, Jeff Buckley, Villagers ou bien m\\xeame Devendra Banhart. Membre du collectif La Folk Station, Geoffrey s'investit pour promouvoir le style folk en r\\xe9gion nantaise \\xe0 travers concerts et \\xe9v\\xe9nements.\"}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\" https://youtu.be/hij6Em3KdsE?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:52,id:\"WbnjlXZ2C\",[c]:\"Concert Armel Dupas\",[d]:\"armel-dupas\",[u]:j({src:\"https://framerusercontent.com/images/wyla7ixfF2tJf1ErRMcgqb17Pg.jpg\",srcSet:\"https://framerusercontent.com/images/wyla7ixfF2tJf1ErRMcgqb17Pg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wyla7ixfF2tJf1ErRMcgqb17Pg.jpg 900w\"},\"\"),[p]:\"2023-06-20T00:00:00.000Z\",[m]:\"13h00\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working pour les cr\\xe9ateurs de la ville de demain, sont fiers d'accueillir Armel Dupas pour une saison de concerts d\\xe9di\\xe9s \\xe0 nos coworkers ainsi qu'au public externe.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Concert Armel Dupas\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : midi\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le concert est film\\xe9 et d\\xe9di\\xe9 aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"Piano Solo\"}),/*#__PURE__*/e(\"p\",{children:\"Armel Dupas est un pianiste et compositeur fran\\xe7ais aventurier. Talent pr\\xe9coce, il \\xe9tudie au prestigieux Conservatoire de Paris. Explorateur curieux et grand voyageur, il tourne avec la fine fleur du jazz europ\\xe9en, dans le sextet d\u2019Henry Texier, avec Sandra Nkak\\xe9, Fiona Monbet ou David Linx. Il compose pour le cin\\xe9ma et collabore notamment avec Arnaud Desplechin ou Michel Gondry. Esprit ind\\xe9pendant, il d\\xe9veloppe de nombreux projets personnels hors des sentiers battus avec la volont\\xe9 d\u2019entrer en contact direct avec son audience, notamment via de nombreuses initiatives sur les r\\xe9seaux sociaux. Il d\\xe9veloppe les concepts Home Piano Live pour emmener la musique chez l\u2019habitant, My Piano Broker \\xe0 la d\\xe9couverte des pianos de France, Yoga Piano Live et Peaceful Piano Live pour accompagner les travailleurs. Vous avez s\\xfbrement d\\xe9j\\xe0 entendu sa musique sur de nombreuses playlists Spotify. Ses compositions en solo ou en trio font actuellement le tour du monde et y sont \\xe9cout\\xe9es des millions de fois.\"}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/wLHGBFqurys?feature=shared\"})})}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/6HnJKFjD4Z0?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1},{index:53,id:\"WTWRf60iq\",[c]:\"Conf\\xe9rence David Miet\",[d]:\"david-miet\",[u]:j({src:\"https://framerusercontent.com/images/H1U9JZwda38SeBWgQ0FAEdWlc9c.jpg\",srcSet:\"https://framerusercontent.com/images/H1U9JZwda38SeBWgQ0FAEdWlc9c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H1U9JZwda38SeBWgQ0FAEdWlc9c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H1U9JZwda38SeBWgQ0FAEdWlc9c.jpg 1200w\"},\"\"),[p]:\"2023-06-06T00:00:00.000Z\",[m]:\"17h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Conf\\xe9rence Grand Invit\\xe9\"}),/*#__PURE__*/e(\"p\",{children:\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working d\\xe9di\\xe9 aux cr\\xe9ateurs de la ville de demain, sont fiers d'accueillir David Miet pour un d\\xe9bat sur l'urbanisme. Ing\\xe9nieur et architecte, David Miet, dirigeant fondateur de Villes Vivantes, se pr\\xeate \\xe0 une interview approfondie sur la conception de la ville. Le th\\xe8me abord\\xe9 sera celui de la construction de villes plus belles, plus abordables et adapt\\xe9es \\xe0 chaque contexte\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Conf\\xe9rence grand invit\\xe9 \"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. L'interview est film\\xe9e et d\\xe9di\\xe9e aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]})]}),[g]:\"x8EW8ZpBr\",[b]:!1,[w]:!0,[v]:!1},{index:54,id:\"kkzXh8L1P\",[c]:\"Concert Apollo Noir\",[d]:\"apollo-noir\",[u]:j({src:\"https://framerusercontent.com/images/rRiIc8wMET7b93jGHwIcF7SDNPo.jpg\",srcSet:\"https://framerusercontent.com/images/rRiIc8wMET7b93jGHwIcF7SDNPo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rRiIc8wMET7b93jGHwIcF7SDNPo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rRiIc8wMET7b93jGHwIcF7SDNPo.jpg 1440w\"},\"\"),[p]:\"2023-06-06T00:00:00.000Z\",[m]:\"17h30\",[x]:\"La Ville est Belle - Salle Agora\",[h]:\"Gratuit\",[f]:/*#__PURE__*/r(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Le Miroir des Futurs, m\\xe9dia novateur, et La Ville est Belle, espace de co-working pour les cr\\xe9ateurs de la ville de demain, sont fiers d'accueillir Apollo Noir pour une saison de concerts d\\xe9di\\xe9s \\xe0 nos coworkers ainsi qu'au public externe.\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Th\\xe9matique de l'\\xe9v\\xe9nement : Concert Apollo Noir\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Dur\\xe9e : Soir\\xe9e\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h3\",{children:\"La salle r\\xe9serv\\xe9e\"}),/*#__PURE__*/r(\"p\",{children:[\"Pour r\\xe9pondre \\xe0 nos besoins, nous r\\xe9servons la \",/*#__PURE__*/e(s,{href:{webPageId:\"raYoptcs5\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'salle de conf\\xe9rence \"Agora\"'})}),\", pouvant accueillir jusqu\u2019\\xe0 150 personnes debout. Le concert est film\\xe9 et d\\xe9di\\xe9 aux r\\xe9seaux sociaux du Miroir des Futurs.\"]}),/*#__PURE__*/r(\"p\",{children:[\"Vous souhaitez en savoir plus, \",/*#__PURE__*/e(s,{href:{webPageId:\"YpCpTe32E\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"contactez-nous\"})}),\".\"]}),/*#__PURE__*/e(\"h3\",{children:\"Apollo Noir\"}),/*#__PURE__*/e(\"p\",{children:\"Depuis ses d\\xe9buts sous l\u2019alias Apollo Noir, R\\xe9mi Sauzedde n\u2019a jamais reni\\xe9 ses racines, musicales et g\\xe9ographiques. Le producteur et musicien a grandi entre les bois noirs de sa r\\xe9gion auvergnate et le local de r\\xe9p\\xe9tition de son groupe punk hardcore. A l\u2019\\xe2ge adulte, avec une culture musicale transversale affin\\xe9e et une collection de synth\\xe9tiseurs analogiques \\xe0 la hauteur de ses ambitions, il pratique d\\xe9sormais une musique \\xe9lectronique hybride et singuli\\xe8re. Il a \\xe9t\\xe9 sollicit\\xe9 par de nombreux artistes pour ses talents en tant que producteur (Buvette, Jeanne Added, Canine, Bagarre, Claude Violante, etc), il a aussi \\xe9t\\xe9 r\\xe9compens\\xe9 plusieurs fois (Album du mois Trax Magazine, Inouis du Printemps de Bourges)\"}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/t1ujCwc3WOE?feature=shared\"})})}),/*#__PURE__*/e(l.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(o,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/4DufVo85nOE?feature=shared\"})})})]}),[g]:\"Rg6oLk2eX\",[b]:!1,[w]:!0,[v]:!1}];for(let e of L)Object.freeze(e);n(L,{csVUGrCmo:{defaultValue:\"\",title:\"Title\",type:a.String},PEuS6f2Ya:{title:\"Slug\",type:a.String},Idx8kWZCq:{title:\"Image \\xe0 la une\",type:a.ResponsiveImage},MMHkEF98b:{title:\"Date\",type:a.Date},WWEYZ68h5:{defaultValue:\"\",placeholder:\"12h00\",title:\"Heure\",type:a.String},F2yLeYLWU:{defaultValue:\"\",placeholder:\"\",title:\"Lieu\",type:a.String},guB5D2dow:{defaultValue:\"\",title:\"Prix\",type:a.String},QfxeFwl5v:{defaultValue:\"\",title:\"Contenu\",type:a.RichText},rF0YxdBxT:{defaultValue:\"KsX2qTydA\",options:[\"KsX2qTydA\",\"Rg6oLk2eX\",\"eOyv6zef8\",\"x8EW8ZpBr\"],optionTitles:[\"\",\"Fun\",\"Learn\",\"Work\"],title:\"Tag\",type:a.Enum},IVvpyOcVF:{defaultValue:!0,title:\"\\xc0 venir\",type:a.Boolean},wMWZpibOF:{defaultValue:!1,title:\"Publi\\xe9\",type:a.Boolean},CmVyUxFvl:{defaultValue:!1,title:\"Lien d'inscription\",type:a.Boolean},DonviNXrM:{title:\"Lien d'inscription\",type:a.Link}}),L.displayName=\"\\xc9v\\xe8nements\";export default L;export const rF0YxdBxTToDisplayName=(e,r)=>{switch(null==r||r.fallback,e){case\"KsX2qTydA\":default:return\"\";case\"Rg6oLk2eX\":return\"Fun\";case\"eOyv6zef8\":return\"Learn\";case\"x8EW8ZpBr\":return\"Work\";}};export const enumToDisplayNameFunctions={rF0YxdBxT:rF0YxdBxTToDisplayName};export const utils={async getSlugByRecordId(e,r){var n;return null===(n=L.find(r=>r.id===e))||void 0===n?void 0:n[d];},async getRecordIdBySlug(e,r){var n;return null===(n=L.find(r=>r[d]===e))||void 0===n?void 0:n.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerCollectionId\":\"VcFqY_lAB\",\"framerData\":\"\",\"framerRecordIncludedLocalesKey\":\"includedLocales\",\"framerContractVersion\":\"1\",\"framerRecordIdKey\":\"id\",\"framerSlug\":\"PEuS6f2Ya\",\"framerRecordIndexKey\":\"index\",\"framerCollectionUtils\":\"1\",\"framerEnumToDisplayNameUtils\":\"2\"}},\"rF0YxdBxTToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "c", "d", "u", "p", "m", "x", "h", "f", "g", "b", "w", "v", "j", "e", "r", "L", "c", "d", "u", "p", "m", "x", "h", "f", "Link", "g", "b", "w", "v", "motion", "ComponentPresetsConsumer", "Youtube", "addPropertyControls", "ControlType", "VcFqY_lAB_default", "rF0YxdBxTToDisplayName", "enumToDisplayNameFunctions", "utils", "n", "__FramerMetadata__"]
}
