<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Agatha Miquel</title>
	<atom:link href="https://agathamiquel.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://agathamiquel.com/</link>
	<description></description>
	<lastBuildDate>Mon, 01 Dec 2025 20:45:43 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://agathamiquel.com/wp-content/uploads/2019/08/Création-Web-Design-Agatha-Miquel.png</url>
	<title>Agatha Miquel</title>
	<link>https://agathamiquel.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">136301028</site>	<item>
		<title>Je ne suis pas un robot</title>
		<link>https://agathamiquel.com/je-ne-suis-pas-un-robot/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 01 Dec 2025 16:17:05 +0000</pubDate>
				<category><![CDATA[Non classé]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2578</guid>

					<description><![CDATA[<p>🤖 Je ne suis pas un robot Immobilise 3 symboles suspects en cliquant dessus avant qu’ils ne s’enfuient ! Capturés : 0 / 3 Clique sur les 🤖 dès que tu les vois. Je ne te crois pas 😏 Recommencer depuis le début ✅ C&#8217;est bon, tu as survécu à tous les niveaux !</p>
<p>L’article <a href="https://agathamiquel.com/je-ne-suis-pas-un-robot/">Je ne suis pas un robot</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2578" class="elementor elementor-2578">
				<div class="elementor-element elementor-element-2055bcd8 e-flex e-con-boxed e-con e-parent" data-id="2055bcd8" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-567578b4 elementor-widget elementor-widget-text-editor" data-id="567578b4" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<style>
  .robot-captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }

  .robot-captcha .captcha-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 24px 28px;
    width: 360px;
    max-width: 90vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .robot-captcha .captcha-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .robot-captcha .captcha-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
  }

  .robot-captcha .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .robot-captcha .cell {
    width: 90px;
    height: 90px;
    max-width: 28vw;
    max-height: 28vw;
    border-radius: 10px;
    border: 1px solid #d0d7e2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    background: #f8fafc;
    transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease, background 0.1s ease;
    user-select: none;
  }

  .robot-captcha .cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
    border-color: #94a3b8;
  }

  .robot-captcha .cell.frozen {
    background: #e0f9e5;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
    cursor: default;
  }

  .robot-captcha .cell.frozen:hover {
    transform: none;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  }

  .robot-captcha .status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: #475569;
  }

  .robot-captcha .status-highlight {
    font-weight: 600;
  }

  /* Bouton de validation – caché au départ, puis fade-in */
  .robot-captcha #validateBtn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    background: #2563eb;
    color: #ffffff;
    display: none;         /* caché au départ */
    opacity: 0;            /* transparent */
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    transition: opacity 0.35s ease, transform 0.1s ease, box-shadow 0.1s ease;
  }

  .robot-captcha #validateBtn.visible {
    display: flex;         /* devient visible */
    opacity: 1;
  }

  .robot-captcha #validateBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
  }

  .robot-captcha #validateBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  }

  .robot-captcha #restartBtn {
    margin-top: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.9rem;
    cursor: pointer;
    color: #475569;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  }

  .robot-captcha #restartBtn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    transform: translateY(-1px);
  }

  .robot-captcha .success-msg {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #16a34a;
    display: none;
  }
</style>

<div class="robot-captcha">
  <div class="captcha-wrapper">
    <div class="captcha-title">
      <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Je ne suis pas un robot
    </div>
    <div class="captcha-subtitle" id="subtitleText">
      Immobilise <strong>3 symboles suspects</strong> en cliquant dessus avant qu’ils ne s’enfuient !
    </div>

    <div class="grid" id="robotGrid"></div>

    <div class="status-row">
      <span>Capturés : <span class="status-highlight" id="frozenCount">0 / 3</span></span>
      <span id="hintText">Clique sur les <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> dès que tu les vois.</span>
    </div>

    <!-- Bouton de validation : apparaît à la fin de chaque niveau -->
    <button id="validateBtn">
      Je ne te crois pas <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60f.png" alt="😏" class="wp-smiley" style="height: 1em; max-height: 1em;" />
    </button>

    <button id="restartBtn" type="button">
      Recommencer depuis le début
    </button>

    <div class="success-msg" id="successMsg">
      <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> C&rsquo;est bon, tu as survécu à tous les niveaux !
    </div>
  </div>
</div>

<script>
(function() {
  // Configuration des niveaux
  var levels = [
    {
      emoji: "&#x1f916;",
      tickMs: 450,
      buttonText: "Je ne te crois pas &#x1f60f;",
      successHint: "OK pour les robots... mais je ne te crois pas.",
      nextHint: "Niveau 2 : attrape les &#x1f47e; plus rapides !",
      final: false
    },
    {
      emoji: "&#x1f47e;",
      tickMs: 350,
      buttonText: "Toujours pas convaincu...",
      successHint: "Pas mal avec les &#x1f47e; !",
      nextHint: "Niveau 3 : les &#x1f47d; sont encore plus furtifs.",
      final: false
    },
    {
      emoji: "&#x1f47d;",
      tickMs: 280,
      buttonText: "Encore un doute...",
      successHint: "Tu gères les &#x1f47d;, clairement.",
      nextHint: "Dernier test (promis) : les symboles les plus douteux...",
      final: false
    },
    {
      emoji: "&#x1f595;",
      tickMs: 180,
      buttonText: "Bon ok, tu n'es pas un robot, tu peux cliquer &#x1f447;",
      successHint: "Wow… tu viens vraiment de cliquer sur ça.",
      nextHint: "",
      final: true
    }
  ];

  var GRID_SIZE = 9;              // 3 x 3
  var TARGET_FROZEN = 3;

  var container = document.currentScript.closest('.robot-captcha') || document.querySelector('.robot-captcha');
  if (!container) return;

  var gridElement = container.querySelector("#robotGrid");
  var frozenCountElement = container.querySelector("#frozenCount");
  var validateBtn = container.querySelector("#validateBtn");
  var restartBtn = container.querySelector("#restartBtn");
  var successMsg = container.querySelector("#successMsg");
  var hintText = container.querySelector("#hintText");
  var subtitleText = container.querySelector("#subtitleText");
  var titleEl = container.querySelector(".captcha-title");

  var cells = [];
  var frozenIndexes = new Set();   // cases verrouillées
  var currentRobots = new Set();   // positions actuelles des emojis non figés
  var intervalId = null;
  var validated = false;
  var currentLevelIndex = 0;
  var currentEmoji = levels[0].emoji;
  var currentTickMs = levels[0].tickMs;

  function createGrid() {
    for (var i = 0; i < GRID_SIZE; i++) {
      var cell = document.createElement("div");
      cell.classList.add("cell");
      cell.dataset.index = i.toString();

      (function(index) {
        cell.addEventListener("click", function () {
          onCellClick(index);
        });
      })(i);

      gridElement.appendChild(cell);
      cells.push(cell);
    }
  }

  function clearRobots() {
    for (var i = 0; i < GRID_SIZE; i++) {
      if (!frozenIndexes.has(i)) {
        cells[i].textContent = "";
      }
    }
    currentRobots.clear();
  }

  function placeRandomRobots() {
    var availableIndexes = [];
    for (var i = 0; i < GRID_SIZE; i++) {
      if (!frozenIndexes.has(i)) {
        availableIndexes.push(i);
      }
    }

    if (availableIndexes.length === 0) return;

    var minPerTick = 1;
    var maxPerTick = 3;
    var count = Math.min(
      minPerTick + Math.floor(Math.random() * (maxPerTick - minPerTick + 1)),
      availableIndexes.length
    );

    shuffleArray(availableIndexes);

    for (var j = 0; j < count; j++) {
      var idx = availableIndexes[j];
      cells[idx].textContent = currentEmoji;
      currentRobots.add(idx);
    }
  }

  function tick() {
    if (validated) return;
    clearRobots();
    placeRandomRobots();
  }

  function onCellClick(index) {
    if (validated) return;
    if (frozenIndexes.has(index)) return;   // déjà figé
    if (!currentRobots.has(index)) return;  // pas d'emoji

    // On fige cet emoji
    frozenIndexes.add(index);
    cells[index].classList.add("frozen");
    cells[index].textContent = currentEmoji;
    currentRobots.delete(index);

    updateFrozenCount();

    if (frozenIndexes.size >= TARGET_FROZEN) {
      onLevelCompleted();
    }
  }

  function updateFrozenCount() {
    frozenCountElement.textContent = frozenIndexes.size + " / " + TARGET_FROZEN;
  }

  function onLevelCompleted() {
    if (intervalId !== null) {
      clearInterval(intervalId);
      intervalId = null;
    }

    var level = levels[currentLevelIndex];
    hintText.textContent = level.successHint || "Bravo, niveau réussi.";

    // Prépare le bouton pour la suite ou la fin
    validateBtn.textContent = level.buttonText || "Je ne te crois pas, on recommence.";
    validateBtn.classList.add("visible");
  }

  function goToNextLevel() {
    var nextIndex = currentLevelIndex + 1;
    if (nextIndex >= levels.length) {
      finalizeGame();
      return;
    }
    startLevel(nextIndex);
  }

  function finalizeGame() {
    validated = true;

    // Changement de titre & sous-titre
    if (titleEl) {
      titleEl.innerHTML = "&#x1f9fe; Test terminé";
    }
    if (subtitleText) {
      subtitleText.innerHTML = "Tu as officiellement survécu au protocole anti-robots.";
    }

    successMsg.style.display = "block";
    successMsg.innerHTML = `
      &#x1f92f; INCROYABLE.<br><br>
      Tu n'es pas un robot...<br>
      Tu es juste quelqu’un qui clique sur tout ce qu’on lui montre.<br><br>
      &#x1f595;<br><br>
      <strong>Maintenant :</strong> ferme cet onglet et <u>retourne travailler</u>.<br><br>
      <em>"La productivité remercie tes neurones pour ce moment."</em>
    `;

    hintText.textContent = "Test terminé. Merci pour ce moment.";
    validateBtn.classList.remove("visible");
  }

  function validateClick() {
    var level = levels[currentLevelIndex];
    if (level.final) {
      finalizeGame();
    } else {
      goToNextLevel();
    }
  }

  function restartGame() {
    startLevel(0);
  }

  function startLevel(levelIndex) {
    currentLevelIndex = levelIndex;
    var level = levels[currentLevelIndex];

    currentEmoji = level.emoji;
    currentTickMs = level.tickMs;
    validated = false;

    // Reset état
    frozenIndexes.clear();
    currentRobots.clear();

    for (var i = 0; i < cells.length; i++) {
      cells[i].textContent = "";
      cells[i].classList.remove("frozen");
    }

    frozenCountElement.textContent = "0 / " + TARGET_FROZEN;

    // Indices visuels
    subtitleText.innerHTML =
      'Niveau ' + (currentLevelIndex + 1) +
      ' : immobilise <strong>3 symboles "' + currentEmoji + '"</strong>.';

    hintText.textContent = 'Clique sur les ' + currentEmoji + ' dès que tu les vois.';
    successMsg.style.display = "none";
    validateBtn.classList.remove("visible");

    // Relance le mouvement
    if (intervalId !== null) {
      clearInterval(intervalId);
    }
    intervalId = setInterval(tick, currentTickMs);
  }

  function shuffleArray(arr) {
    for (var i = arr.length - 1; i > 0; i--) {
      var j = Math.floor(Math.random() * (i + 1));
      var temp = arr[i];
      arr[i] = arr[j];
      arr[j] = temp;
    }
  }

  function initGame() {
    createGrid();
    updateFrozenCount();
    validateBtn.addEventListener("click", validateClick);
    restartBtn.addEventListener("click", restartGame);
    startLevel(0);
  }

  initGame();
})();
</script>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>L’article <a href="https://agathamiquel.com/je-ne-suis-pas-un-robot/">Je ne suis pas un robot</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2578</post-id>	</item>
		<item>
		<title>[Création] Dépliant pour la promotion de l&#8217;action locale d&#8217;une élue régionale</title>
		<link>https://agathamiquel.com/creation-depliant/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Tue, 20 Aug 2024 14:52:34 +0000</pubDate>
				<category><![CDATA[communication politique et publique]]></category>
		<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<category><![CDATA[Non classé]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2524</guid>

					<description><![CDATA[<p>[Création] Dépliant pour la promotion de l&#8217;action locale d&#8217;une élue régionale Création graphique d&#8217;un dépliant 8 pages Création graphique d&#8217;un dépliant 8 pages pour une élue régionale2023 et 2024 [Sous contrat CDD] Dépliant 2024 Dépliant 2023</p>
<p>L’article <a href="https://agathamiquel.com/creation-depliant/">[Création] Dépliant pour la promotion de l&rsquo;action locale d&rsquo;une élue régionale</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2524" class="elementor elementor-2524">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-3c4e2ad6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3c4e2ad6" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3dac3d15" data-id="3dac3d15" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7f57bc97 elementor-widget elementor-widget-heading" data-id="7f57bc97" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Création] Dépliant pour la promotion de l'action locale d'une élue régionale</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-4d0e7972 elementor-widget elementor-widget-text-editor" data-id="4d0e7972" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Création graphique d&rsquo;un dépliant 8 pages</p>								</div>
				</div>
				<div class="elementor-element elementor-element-6ecc3a6b elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="6ecc3a6b" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-1139f046 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1139f046" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c52906d" data-id="5c52906d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-3d5788ad elementor-widget elementor-widget-image" data-id="3d5788ad" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img fetchpriority="high" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv-1024x1024.png" class="attachment-large size-large wp-image-2528" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv-768x769.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-Agatha-Miquel-couv.png 1426w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2948ac0f" data-id="2948ac0f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-16e0590a elementor-widget elementor-widget-text-editor" data-id="16e0590a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Création graphique d&rsquo;un dépliant 8 pages pour une élue régionale</strong><br />2023 et 2024</p><p>[Sous contrat CDD]</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-266eea12 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="266eea12" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-78d8b9c5" data-id="78d8b9c5" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-76b480b8 elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="76b480b8" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-24dd1ffb elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="24dd1ffb" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-30965937" data-id="30965937" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5f6404ab elementor-widget elementor-widget-heading" data-id="5f6404ab" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Dépliant 2024</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-2f1f5848 elementor-widget elementor-widget-image" data-id="2f1f5848" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1575" height="1575" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel.png" class="attachment-full size-full wp-image-2530" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel.png 1575w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2024-Agatha-Miquel-1536x1536.png 1536w" sizes="(max-width: 1575px) 100vw, 1575px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-51f0f11 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51f0f11" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5b05c35" data-id="5b05c35" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a8b75a1 elementor-widget elementor-widget-heading" data-id="a8b75a1" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Dépliant 2023</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-3adacb8 elementor-widget elementor-widget-image" data-id="3adacb8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1575" height="1575" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1.png" class="attachment-full size-full wp-image-2529" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1.png 1575w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Depliant-communication-politique-locale-2023-Agatha-Miquel-1-1536x1536.png 1536w" sizes="(max-width: 1575px) 100vw, 1575px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-depliant/">[Création] Dépliant pour la promotion de l&rsquo;action locale d&rsquo;une élue régionale</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2524</post-id>	</item>
		<item>
		<title>[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</title>
		<link>https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 19 Aug 2024 17:24:11 +0000</pubDate>
				<category><![CDATA[Campagne de communication]]></category>
		<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2493</guid>

					<description><![CDATA[<p>[Création] Dépliant publicitaire pour le photovoltaïque &#8211; Hydro Elec Clim Corse Création support de communication Rédaction, création et mise en page d&#8217;une plaquette pour promouvoir la pose de panneaux photovoltaïques par une entreprise CorseJanvier 2024 Cartes de visite</p>
<p>L’article <a href="https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse/">[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2493" class="elementor elementor-2493">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-3c123258 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3c123258" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-434013e3" data-id="434013e3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-64933b09 elementor-widget elementor-widget-heading" data-id="64933b09" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Création] Dépliant publicitaire pour le photovoltaïque - Hydro Elec Clim Corse </h1>				</div>
				</div>
				<div class="elementor-element elementor-element-6beb1bb7 elementor-widget elementor-widget-text-editor" data-id="6beb1bb7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Création support de communication</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5dd7c276 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="5dd7c276" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-e9f6901 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9f6901" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-62148198" data-id="62148198" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-301aa2fe elementor-widget elementor-widget-image" data-id="301aa2fe" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="150" height="150" src="https://agathamiquel.com/wp-content/uploads/2024/08/LOGO-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-2495" alt="" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-856f18d" data-id="856f18d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-328f6167 elementor-widget elementor-widget-text-editor" data-id="328f6167" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><b>Rédaction, création et mise en page d&rsquo;une plaquette pour promouvoir la pose de panneaux photovoltaïques par une entreprise Corse</b><br />Janvier 2024</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-79f878ec elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="79f878ec" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d254653" data-id="2d254653" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-26130185 elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="26130185" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-6d56796d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d56796d" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-70121764" data-id="70121764" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-670e6394 elementor-widget elementor-widget-heading" data-id="670e6394" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Cartes de visite</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-2d37aa22 elementor-widget elementor-widget-image" data-id="2d37aa22" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="1575" height="1181" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2.png" class="attachment-full size-full wp-image-2481" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2.png 1575w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2-300x225.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2-1024x768.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2-768x576.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-depliant-Photovoltaique-HEC-Agatha-Miquel-2-1536x1152.png 1536w" sizes="(max-width: 1575px) 100vw, 1575px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse/">[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2493</post-id>	</item>
		<item>
		<title>[Création] Identité visuelle &#038; Web Risaletto Avocats</title>
		<link>https://agathamiquel.com/creation-identite-visuelle-web-risaletto-avocats/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 19 Aug 2024 17:11:33 +0000</pubDate>
				<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<category><![CDATA[Identité visuelle]]></category>
		<category><![CDATA[Non classé]]></category>
		<category><![CDATA[Web design]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2476</guid>

					<description><![CDATA[<p>[Branding] Cabinet d&#8217;avocats Risaletto Identité visuelle &#8211; Branding &#8211; Site Internet Création de l&#8217;identité visuelle : logoBranding : cartes de visite et papeterie2023-2024 Cartes de visite Carte de vœux Site internet</p>
<p>L’article <a href="https://agathamiquel.com/creation-identite-visuelle-web-risaletto-avocats/">[Création] Identité visuelle &#038; Web Risaletto Avocats</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2476" class="elementor elementor-2476">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-2d2e15a9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2d2e15a9" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5ebbf98d" data-id="5ebbf98d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a2c247d elementor-widget elementor-widget-heading" data-id="a2c247d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Branding] Cabinet d'avocats Risaletto</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-63de8a92 elementor-widget elementor-widget-text-editor" data-id="63de8a92" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Identité visuelle &#8211; Branding &#8211; Site Internet</p>								</div>
				</div>
				<div class="elementor-element elementor-element-55a5ed69 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="55a5ed69" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-19cf2eee elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="19cf2eee" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-51a39085" data-id="51a39085" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6cc2f642 elementor-widget elementor-widget-image" data-id="6cc2f642" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="320" height="132" src="https://agathamiquel.com/wp-content/uploads/2024/08/Logo-Sophie-Risaletto-2023-OK.png" class="attachment-large size-large wp-image-2488" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Logo-Sophie-Risaletto-2023-OK.png 320w, https://agathamiquel.com/wp-content/uploads/2024/08/Logo-Sophie-Risaletto-2023-OK-300x124.png 300w" sizes="(max-width: 320px) 100vw, 320px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e17f279" data-id="e17f279" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-2e18cfd9 elementor-widget elementor-widget-text-editor" data-id="2e18cfd9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Création de l&rsquo;identité visuelle : logo</strong><br /><strong>Branding : cartes de visite et papeterie</strong><br />2023-2024</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-e1b2771 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e1b2771" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-64ec7840" data-id="64ec7840" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-1e485d45 elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="1e485d45" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-6135600 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6135600" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-416ecca7" data-id="416ecca7" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5ce95cf5 elementor-widget elementor-widget-heading" data-id="5ce95cf5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Cartes de visite</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-641057cd elementor-widget elementor-widget-image" data-id="641057cd" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-1024x1024.png" class="attachment-large size-large wp-image-2486" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Logo-carte-de-visite-Risaletto-Avocats-Agatha-Miquel-1-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6f7dfd6c" data-id="6f7dfd6c" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-2801b0a7 elementor-widget elementor-widget-heading" data-id="2801b0a7" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Carte de vœux</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-79e9cb8e elementor-widget elementor-widget-image" data-id="79e9cb8e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3-1024x1024.png" class="attachment-large size-large wp-image-2489" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Sans-titre-1_Plan-de-travail-1-copie-3.png 1182w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
		<div class="elementor-element elementor-element-d656aa3 e-flex e-con-boxed e-con e-parent" data-id="d656aa3" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5927fea elementor-widget elementor-widget-heading" data-id="5927fea" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Site internet</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-324cbbb elementor-widget elementor-widget-image" data-id="324cbbb" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="384" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-1024x492.png" class="attachment-large size-large wp-image-2480" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-1024x492.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-300x144.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-768x369.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-1536x738.png 1536w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-Charte-graphique-Site-internet-Risaletto-Avocats-Agatha-Miquel-2048x984.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5d7f720 e-flex e-con-boxed e-con e-parent" data-id="5d7f720" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5af2e00 elementor-widget elementor-widget-spacer" data-id="5af2e00" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
				</div>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-identite-visuelle-web-risaletto-avocats/">[Création] Identité visuelle &#038; Web Risaletto Avocats</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2476</post-id>	</item>
		<item>
		<title>[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</title>
		<link>https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse-2/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 19 Aug 2024 15:32:00 +0000</pubDate>
				<category><![CDATA[Campagne de communication]]></category>
		<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2500</guid>

					<description><![CDATA[<p>[Création] Dépliant publicitaire pour des bornes éléctriques &#8211; Hydro Elec Clim Corse Création support de communication Rédaction, création et mise en page d&#8217;une plaquette pour promouvoir la pose de bornes éléctriques par une entreprise CorseJanvier 2024 Cartes de visite</p>
<p>L’article <a href="https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse-2/">[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2500" class="elementor elementor-2500">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-3c123258 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3c123258" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-434013e3" data-id="434013e3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-64933b09 elementor-widget elementor-widget-heading" data-id="64933b09" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Création] Dépliant publicitaire pour des bornes éléctriques - Hydro Elec Clim Corse </h1>				</div>
				</div>
				<div class="elementor-element elementor-element-6beb1bb7 elementor-widget elementor-widget-text-editor" data-id="6beb1bb7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Création support de communication</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5dd7c276 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="5dd7c276" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-e9f6901 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9f6901" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-62148198" data-id="62148198" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-301aa2fe elementor-widget elementor-widget-image" data-id="301aa2fe" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="150" height="150" src="https://agathamiquel.com/wp-content/uploads/2024/08/LOGO-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-2495" alt="" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-856f18d" data-id="856f18d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-328f6167 elementor-widget elementor-widget-text-editor" data-id="328f6167" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><b>Rédaction, création et mise en page d&rsquo;une plaquette pour promouvoir la pose de bornes éléctriques par une entreprise Corse</b><br />Janvier 2024</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-79f878ec elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="79f878ec" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d254653" data-id="2d254653" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-26130185 elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="26130185" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-6d56796d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d56796d" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-70121764" data-id="70121764" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-670e6394 elementor-widget elementor-widget-heading" data-id="670e6394" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Cartes de visite</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-2d37aa22 elementor-widget elementor-widget-image" data-id="2d37aa22" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="1510" height="1509" src="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel.png" class="attachment-full size-full wp-image-2483" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel.png 1510w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Creation-flyer-Bornes-electriques-HEC-Agatha-Miquel-768x767.png 768w" sizes="(max-width: 1510px) 100vw, 1510px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-depliant-publicitaire-hydro-elec-clim-corse-2/">[Création] Dépliant publicitaire &#8211; Hydro Elec Clim Corse</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2500</post-id>	</item>
		<item>
		<title>[Mise en page] Rapport 2022 de l&#8217;Union Forestière d&#8217;Ile-de-France</title>
		<link>https://agathamiquel.com/mise-en-page-rapport-2022-de-lunion-forestiere-dile-de-france/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 19 Aug 2024 14:28:00 +0000</pubDate>
				<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2499</guid>

					<description><![CDATA[<p>[Mise en page] Rapport 2022 de l&#8217;Union Forestière d&#8217;Ile-de-France Mise en page chartée Mise en page du Rapport 2022 de l&#8217;union régionale des collectivités forestières d&#8217;île de FranceRespect de la charte graphique Octobre 2023 Mise en page</p>
<p>L’article <a href="https://agathamiquel.com/mise-en-page-rapport-2022-de-lunion-forestiere-dile-de-france/">[Mise en page] Rapport 2022 de l&rsquo;Union Forestière d&rsquo;Ile-de-France</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2499" class="elementor elementor-2499">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-569cceb8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="569cceb8" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-21dc14ba" data-id="21dc14ba" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-1f579baf elementor-widget elementor-widget-heading" data-id="1f579baf" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Mise en page] Rapport 2022 de l'Union Forestière d'Ile-de-France</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-223eea0f elementor-widget elementor-widget-text-editor" data-id="223eea0f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Mise en page chartée</p>								</div>
				</div>
				<div class="elementor-element elementor-element-1d1cc0c7 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="1d1cc0c7" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-35c01c99 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="35c01c99" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6db805bb" data-id="6db805bb" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-626d9a85 elementor-widget elementor-widget-image" data-id="626d9a85" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="356" height="327" src="https://agathamiquel.com/wp-content/uploads/2024/08/logo-ur-idf.png" class="attachment-medium_large size-medium_large wp-image-2508" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/logo-ur-idf.png 356w, https://agathamiquel.com/wp-content/uploads/2024/08/logo-ur-idf-300x276.png 300w" sizes="(max-width: 356px) 100vw, 356px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6d87636b" data-id="6d87636b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-3456c213 elementor-widget elementor-widget-text-editor" data-id="3456c213" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><b>Mise en page du Rapport 2022 de l&rsquo;union régionale des collectivités forestières d&rsquo;île de France</b><br />Respect de la charte graphique</p><p>Octobre 2023</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-5f383cb1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5f383cb1" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5fb438d4" data-id="5fb438d4" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-64bcccf8 elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="64bcccf8" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-3307ca1a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3307ca1a" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5ea74289" data-id="5ea74289" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-27e31cc2 elementor-widget elementor-widget-heading" data-id="27e31cc2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Mise en page</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-53cef07a elementor-widget elementor-widget-image" data-id="53cef07a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel-1024x1024.png" class="attachment-large size-large wp-image-2505" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2024/08/Mise-en-page-rapport-dactivite-2022-URCF-IDF-Agatha-Miquel.png 1181w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/mise-en-page-rapport-2022-de-lunion-forestiere-dile-de-france/">[Mise en page] Rapport 2022 de l&rsquo;Union Forestière d&rsquo;Ile-de-France</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2499</post-id>	</item>
		<item>
		<title>[Création] Identité visuelle pour un café en Tunisie</title>
		<link>https://agathamiquel.com/creation-identite-visuelle-pour-un-cafe-en-tunisie/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Fri, 31 Mar 2023 17:36:02 +0000</pubDate>
				<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<category><![CDATA[Identité visuelle]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2254</guid>

					<description><![CDATA[<p>[Création] Logos de concepts culinaires Identité visuelle &#8211; Création de logo &#8211; Création d&#8217;un univers pour un café Création d&#8217;identités visuelles pour un café tunisien Création pour un groupe de catering, mais projet non retenu pour changement de concept Février &#8211; Mars 2023 Création d&#8217;une identité visuelle pour un café tunisien  Le concept :  Avec [&#8230;]</p>
<p>L’article <a href="https://agathamiquel.com/creation-identite-visuelle-pour-un-cafe-en-tunisie/">[Création] Identité visuelle pour un café en Tunisie</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2254" class="elementor elementor-2254">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-2bcce2e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bcce2e" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-77793ac8" data-id="77793ac8" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-56857f3f elementor-widget elementor-widget-heading" data-id="56857f3f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Création] Logos de concepts culinaires</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-69a8eb80 elementor-widget elementor-widget-text-editor" data-id="69a8eb80" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Identité visuelle &#8211; Création de logo &#8211; Création d&rsquo;un univers pour un café</p>								</div>
				</div>
				<div class="elementor-element elementor-element-325db245 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="325db245" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-4b56d498 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4b56d498" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-492ac27f" data-id="492ac27f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-1387a6f4 elementor-widget elementor-widget-image" data-id="1387a6f4" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-1024x1024.png" class="attachment-large size-large wp-image-2260" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4045b6f6" data-id="4045b6f6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-353d3044 elementor-widget elementor-widget-text-editor" data-id="353d3044" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Création d&rsquo;identités visuelles pour un café tunisien</strong></p><p>Création pour un groupe de catering, mais projet non retenu pour changement de concept</p><p>Février &#8211; Mars 2023</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-725391b3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="725391b3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ee14a68" data-id="3ee14a68" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-3d2249fb elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="3d2249fb" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-fa494ba elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fa494ba" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5debfb4" data-id="5debfb4" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8b69e51 elementor-widget elementor-widget-heading" data-id="8b69e51" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Création d'une identité visuelle pour un café tunisien</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-70b7191 elementor-widget elementor-widget-text-editor" data-id="70b7191" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div class="page" title="Page 1"><div class="layoutArea"><div class="column"><h4> <strong><span style="font-size: 1.125rem;">Le concept : </span></strong></h4></div></div><div class="layoutArea"><div class="column"><p>Avec le nom Chadlya, il y a la volonté de mettre en valeur l’histoire du café en Tunisie introduit par Abou Hassan al-Chadhili.</p><p>La baseline « Tunisian Traditionnal Coffee Shop » permet la différenciation du point de vente en accentuant le savoir-faire traditionnel dans la préparation du café.</p><p>Les illustrations sont inspirées des mosaïques des la Médina de Tunis et des poteries Berbères. </p><p>Le carré de mosaïque avait pour but de décorer le comptoir du café. </p></div></div></div>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4d60162" data-id="4d60162" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a5401da elementor-widget elementor-widget-image" data-id="a5401da" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-1024x1024.png" class="attachment-large size-large wp-image-2259" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Presentation-client-charte-graphique-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-e9d1f3e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9d1f3e" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-690c04d" data-id="690c04d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9da86af elementor-widget elementor-widget-image" data-id="9da86af" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-1024x1024.png" class="attachment-large size-large wp-image-2257" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Modif-mosaique-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5794e19" data-id="5794e19" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-dbe7d4d elementor-widget elementor-widget-image" data-id="dbe7d4d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-1024x1024.png" class="attachment-large size-large wp-image-2256" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Logo-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-bdc832f" data-id="bdc832f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5ad6b80 elementor-widget elementor-widget-image" data-id="5ad6b80" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--1024x1024.png" class="attachment-large size-large wp-image-2258" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/03/Creation-de-lidentite-visuelle-pour-un-Projet-Cafe-tunisien-Agatha-Miquel_Mosaique-pour-la-decoration--2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-345a567 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="345a567" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8f86971" data-id="8f86971" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6a53dee elementor-widget elementor-widget-spacer" data-id="6a53dee" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-identite-visuelle-pour-un-cafe-en-tunisie/">[Création] Identité visuelle pour un café en Tunisie</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2254</post-id>	</item>
		<item>
		<title>[Illustration] But Fist Coffee pour Kuum Café &#8211; Cuidad Guzmán, Mexique</title>
		<link>https://agathamiquel.com/illustration-but-fist-coffee-pour-kuum-cafe-cuidad-guzman-mexique/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 06 Mar 2023 13:32:11 +0000</pubDate>
				<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2157</guid>

					<description><![CDATA[<p>[Illustration] But Fist Coffee pour Kuum Café &#8211; Cuidad Guzmán, Mexique Illustration Procreate Illustration par l&#8217;amour du café et par Kumm Café Inspirée par Dafné Sigala et offert pour les réseaux sociaux de son super projet Kumm Café qui se trouve à Cuidad Guzmán au Mexique</p>
<p>L’article <a href="https://agathamiquel.com/illustration-but-fist-coffee-pour-kuum-cafe-cuidad-guzman-mexique/">[Illustration] But Fist Coffee pour Kuum Café &#8211; Cuidad Guzmán, Mexique</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2157" class="elementor elementor-2157">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-2bcce2e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2bcce2e" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-77793ac8" data-id="77793ac8" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-56857f3f elementor-widget elementor-widget-heading" data-id="56857f3f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Illustration] But Fist Coffee pour Kuum Café - Cuidad Guzmán, Mexique</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-69a8eb80 elementor-widget elementor-widget-text-editor" data-id="69a8eb80" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Illustration Procreate</p>								</div>
				</div>
				<div class="elementor-element elementor-element-325db245 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="325db245" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-4b56d498 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4b56d498" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-492ac27f" data-id="492ac27f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-cc12cde elementor-widget elementor-widget-image" data-id="cc12cde" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Agatha-Miquel.gif" class="attachment-large size-large wp-image-2162" alt="" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4045b6f6" data-id="4045b6f6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-353d3044 elementor-widget elementor-widget-text-editor" data-id="353d3044" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><b>Illustration par l&rsquo;amour du café et par Kumm Café</b></p><p>Inspirée par Dafné Sigala et offert pour les réseaux sociaux de son super projet Kumm Café qui se trouve à Cuidad Guzmán au Mexique</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-725391b3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="725391b3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ee14a68" data-id="3ee14a68" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-3d2249fb elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="3d2249fb" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-fa494ba elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fa494ba" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5debfb4" data-id="5debfb4" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ff7381b elementor-widget elementor-widget-image" data-id="ff7381b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Latte-Agatha-Miquel.png" class="attachment-large size-large wp-image-2161" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Latte-Agatha-Miquel.png 850w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Latte-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Latte-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Latte-Agatha-Miquel-768x768.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4d60162" data-id="4d60162" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5bb6f0d elementor-widget elementor-widget-image" data-id="5bb6f0d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Expresso-Agatha-Miquel.png" class="attachment-large size-large wp-image-2160" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Expresso-Agatha-Miquel.png 850w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Expresso-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Expresso-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Illustration-Monday_Coffee-Expresso-Agatha-Miquel-768x768.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/illustration-but-fist-coffee-pour-kuum-cafe-cuidad-guzman-mexique/">[Illustration] But Fist Coffee pour Kuum Café &#8211; Cuidad Guzmán, Mexique</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2157</post-id>	</item>
		<item>
		<title>[Création] Affiche événement « Pitch des écrivains » du Rotary club Lyon Nord</title>
		<link>https://agathamiquel.com/creation-affiche-evenement-pitch-des-ecrivains-du-rotary-club-lyon-nord/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Mon, 27 Feb 2023 13:09:19 +0000</pubDate>
				<category><![CDATA[Création graphique]]></category>
		<category><![CDATA[Créations]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2145</guid>

					<description><![CDATA[<p>Création affiche pour un événement culturel [Création] Affiche événement « Pitch des écrivains du Rotary club Lyon Nord Création de l&#8217;affiche de l&#8217;événement « Le premier Pitch des écrivains » Événement organisé par le Rotary Club Lyon-Nord Partenaire officielle de l&#8217;événement Création de l&#8217;affiche de l&#8217;événement Déclinaison pour les réseaux sociaux</p>
<p>L’article <a href="https://agathamiquel.com/creation-affiche-evenement-pitch-des-ecrivains-du-rotary-club-lyon-nord/">[Création] Affiche événement « Pitch des écrivains » du Rotary club Lyon Nord</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2145" class="elementor elementor-2145">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-4ec1c7b8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec1c7b8" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ad11e7b" data-id="4ad11e7b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c7d7d24 elementor-widget elementor-widget-text-editor" data-id="c7d7d24" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Création affiche pour un événement culturel</p>								</div>
				</div>
				<div class="elementor-element elementor-element-656e65fd elementor-widget elementor-widget-heading" data-id="656e65fd" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Création] Affiche événement "Pitch des écrivains du Rotary club Lyon Nord</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-14555769 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="14555769" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-62ee47d3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="62ee47d3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-518a3bf1" data-id="518a3bf1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-55811701 elementor-widget elementor-widget-image" data-id="55811701" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-1024x1024.png" class="attachment-large size-large wp-image-2151" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1.png 1042w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-17ed347b" data-id="17ed347b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-109764a6 elementor-widget elementor-widget-text-editor" data-id="109764a6" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><b>Création de l&rsquo;affiche de l&rsquo;événement « Le premier Pitch des écrivains »</b></p><p>Événement organisé par le Rotary Club Lyon-Nord</p><p><span style="color: #3366ff;"><strong>Partenaire officielle de l&rsquo;événement</strong></span></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-5ef954d3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5ef954d3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-278b229a" data-id="278b229a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-71733f6b elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="71733f6b" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-50ddaab9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="50ddaab9" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab625e4" data-id="ab625e4" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-581b258 elementor-widget elementor-widget-heading" data-id="581b258" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Création de l'affiche de l'événement</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-50bc5dd elementor-widget elementor-widget-image" data-id="50bc5dd" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-1024x1024.png" class="attachment-large size-large wp-image-2151" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-Partenariat-1.png 1042w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-382bd781" data-id="382bd781" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-0429c77 elementor-widget elementor-widget-heading" data-id="0429c77" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Déclinaison pour les réseaux sociaux</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-8a6b2f4 elementor-widget elementor-widget-image" data-id="8a6b2f4" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-contenu-Reseaux-sociaux-Partenariat.png" class="attachment-large size-large wp-image-2150" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-contenu-Reseaux-sociaux-Partenariat.png 1000w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-contenu-Reseaux-sociaux-Partenariat-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-contenu-Reseaux-sociaux-Partenariat-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/03/Affiche-Pitch-des-ecrivains-Creation-contenu-Reseaux-sociaux-Partenariat-768x768.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/creation-affiche-evenement-pitch-des-ecrivains-du-rotary-club-lyon-nord/">[Création] Affiche événement « Pitch des écrivains » du Rotary club Lyon Nord</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2145</post-id>	</item>
		<item>
		<title>[Exposition] Illustrations du patrimoine de l&#8217;Essonne</title>
		<link>https://agathamiquel.com/exposition-illustrations-du-patrimoine-de-lessonne/</link>
		
		<dc:creator><![CDATA[Agatha Miquel]]></dc:creator>
		<pubDate>Tue, 21 Feb 2023 09:52:45 +0000</pubDate>
				<category><![CDATA[Créations]]></category>
		<category><![CDATA[Exposition]]></category>
		<guid isPermaLink="false">https://agathamiquel.com/?p=2105</guid>

					<description><![CDATA[<p>Exposition Illustrations patrimoine Français &#8211; Marketing territorial [Exposition] Illustrations du patrimoine de l&#8217;Essonne Exposition illustrations du patrimoine de l&#8217;Essonne Exposition « La caravane sénatoriale &#8211; Villes et villages d&#8217;Essonne » de la Sénatrice Daphné Ract-Madoux À Guibeville en Essonne le 18 février 2023 La caravane Sénatoriale &#8211; Villes et villages d&#8217;Essonne Pour marquer sa première année en [&#8230;]</p>
<p>L’article <a href="https://agathamiquel.com/exposition-illustrations-du-patrimoine-de-lessonne/">[Exposition] Illustrations du patrimoine de l&rsquo;Essonne</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="2105" class="elementor elementor-2105">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-4ec1c7b8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4ec1c7b8" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ad11e7b" data-id="4ad11e7b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c7d7d24 elementor-widget elementor-widget-text-editor" data-id="c7d7d24" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: left;">Exposition Illustrations patrimoine Français &#8211; Marketing territorial</p>								</div>
				</div>
				<div class="elementor-element elementor-element-656e65fd elementor-widget elementor-widget-heading" data-id="656e65fd" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">[Exposition]  Illustrations du patrimoine de l'Essonne</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-14555769 elementor-hidden-phone elementor-widget elementor-widget-spacer" data-id="14555769" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-62ee47d3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="62ee47d3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-518a3bf1" data-id="518a3bf1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-55811701 elementor-widget elementor-widget-image" data-id="55811701" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="571" src="https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-L-Marketing-territorial-Agatha-Miquel-1024x731.png" class="attachment-large size-large wp-image-2108" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-L-Marketing-territorial-Agatha-Miquel-1024x731.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-L-Marketing-territorial-Agatha-Miquel-300x214.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-L-Marketing-territorial-Agatha-Miquel-768x549.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-L-Marketing-territorial-Agatha-Miquel.png 1120w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-17ed347b" data-id="17ed347b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-109764a6 elementor-widget elementor-widget-text-editor" data-id="109764a6" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Exposition illustrations du patrimoine de l&rsquo;Essonne</strong></p><p>Exposition « La caravane sénatoriale &#8211; Villes et villages d&rsquo;Essonne » de la Sénatrice Daphné Ract-Madoux</p><p>À Guibeville en Essonne le 18 février 2023</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-5ef954d3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5ef954d3" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-278b229a" data-id="278b229a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-71733f6b elementor-widget-divider--view-line_icon elementor-view-default elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider" data-id="71733f6b" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
							<div class="elementor-icon elementor-divider__element">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-thumbtack" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path></svg></div>
						</span>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-50ddaab9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="50ddaab9" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab625e4" data-id="ab625e4" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-581b258 elementor-widget elementor-widget-heading" data-id="581b258" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">La caravane Sénatoriale - Villes et villages d'Essonne</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-80299b7 elementor-widget elementor-widget-text-editor" data-id="80299b7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Pour marquer sa première année en tant que Sénatrice de l’Essonne, Daphné Ract-Madoux a souhaité partager un moment chaleureux en organisant une exposition photo. Des photos prises lorsqu’elle parcourt le département en s’émerveillant des beaux paysages qui s’offrent à elle et qu’elle immortalise systématiquement dans son appareil photo. </p><p>Pour ma part, cela fait aussi un an que <strong>j’accompagne Daphné en tant que graphiste pour mettre en valeur son action quotidienne tant au Sénat que sur le terrain. </strong></p><p>L’occasion pour moi de découvrir le patrimoine de l’Essonne composé de châteaux magnifiques,  dont j’ai plaisir à illustrer et qui ont pris place dans son exposition à Guibeville. </p><p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3e1.png" alt="🏡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Exposition La caravane sénatoriale &#8211; Villes et villages d&rsquo;Essonne<br /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cd.png" alt="📍" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Salle Joséphine Baker de Guibeville</p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-636a393" data-id="636a393" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a947341 elementor-align-center elementor-widget elementor-widget-button" data-id="a947341" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://agathamiquel.com/contact/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Vous souhaitez une illustration personnalisée ? <br>Je suis à votre écoute !</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-ca0c652 elementor-widget elementor-widget-image" data-id="ca0c652" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="640" src="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-1024x819.jpeg" class="attachment-large size-large wp-image-2126" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-1024x819.jpeg 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-300x240.jpeg 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-768x614.jpeg 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1.jpeg 1440w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-6498528 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6498528" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1195c72" data-id="1195c72" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8bf1790 elementor-widget elementor-widget-image" data-id="8bf1790" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="800" height="285" src="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1-1024x365.jpeg" class="attachment-large size-large wp-image-2127" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1-1024x365.jpeg 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1-300x107.jpeg 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1-768x273.jpeg 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1-1536x547.jpeg 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Discours-Daphne-1.jpeg 2048w" sizes="(max-width: 800px) 100vw, 800px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-47e8ee5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="47e8ee5" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-97db70c" data-id="97db70c" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6c42af4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="6c42af4" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-abcb495 elementor-widget elementor-widget-heading" data-id="abcb495" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Illustrations imprimés en France <br>sur papier Gloss en format A4 et A5</h2>				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-40e8511 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="40e8511" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-8698073" data-id="8698073" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-12e70a0 elementor-widget elementor-widget-image" data-id="12e70a0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau roches" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExNywidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LXJvY2hlcy5wbmcifQ%3D%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-1024x1024.png" class="attachment-large size-large wp-image-2117" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-roches-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e019bc3" data-id="e019bc3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-192c828 elementor-widget elementor-widget-image" data-id="192c828" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau courances" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExMywidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LWNvdXJhbmNlcy5wbmcifQ%3D%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-1024x1024.png" class="attachment-large size-large wp-image-2113" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-courances-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-ef83e09" data-id="ef83e09" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7a9e100 elementor-widget elementor-widget-image" data-id="7a9e100" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau dourdan" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExNCwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LWRvdXJkYW4ucG5nIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-1024x1024.png" class="attachment-large size-large wp-image-2114" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-dourdan-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-7607747 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7607747" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e99216e" data-id="e99216e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-37870f2 elementor-widget elementor-widget-image" data-id="37870f2" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau Farcheville" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExNiwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LUZhcmNoZXZpbGxlLnBuZyJ9">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-1024x1024.png" class="attachment-large size-large wp-image-2116" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Farcheville-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-bd48d86" data-id="bd48d86" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-57a87a8 elementor-widget elementor-widget-image" data-id="57a87a8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau chamarande" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExMiwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LWNoYW1hcmFuZGUucG5nIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-1024x1024.png" class="attachment-large size-large wp-image-2112" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-chamarande-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-d50f10a" data-id="d50f10a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-e9baa49 elementor-widget elementor-widget-image" data-id="e9baa49" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Cathédrale evry" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExMCwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DYXRoZWRyYWxlLWV2cnkucG5nIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-1024x1024.png" class="attachment-large size-large wp-image-2110" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Cathedrale-evry-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-0b4aaed elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0b4aaed" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3846504" data-id="3846504" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9ad6fc0 elementor-widget elementor-widget-image" data-id="9ad6fc0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Aerotraingomez" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEwOSwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9BZXJvdHJhaW5nb21lei5wbmcifQ%3D%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-1024x1024.png" class="attachment-large size-large wp-image-2109" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Aerotraingomez-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3a34d6f" data-id="3a34d6f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-999db7c elementor-widget elementor-widget-image" data-id="999db7c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Insta - Patrimoine de l&#039;Essonne - Illustrations Agatha Miquel_Chateau Beauregard" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjExMSwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbnN0YS1QYXRyaW1vaW5lLWRlLWxFc3Nvbm5lLUlsbHVzdHJhdGlvbnMtQWdhdGhhLU1pcXVlbF9DaGF0ZWF1LUJlYXVyZWdhcmQucG5nIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-1024x1024.png" class="attachment-large size-large wp-image-2111" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-1024x1024.png 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-768x768.png 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-1536x1536.png 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Insta-Patrimoine-de-lEssonne-Illustrations-Agatha-Miquel_Chateau-Beauregard-2048x2048.png 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e269f3e" data-id="e269f3e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-d029cd3 elementor-widget elementor-widget-image" data-id="d029cd3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Illustrations patrimoine essonne - Marketing territorial - Agatha Miquel" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEwNywidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9JbGx1c3RyYXRpb25zLXBhdHJpbW9pbmUtZXNzb25uZS1NYXJrZXRpbmctdGVycml0b3JpYWwtQWdhdGhhLU1pcXVlbC5wbmcifQ%3D%3D">
							<img loading="lazy" decoding="async" width="800" height="800" src="https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel.png" class="attachment-large size-large wp-image-2107" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel.png 800w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel-300x300.png 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel-150x150.png 150w, https://agathamiquel.com/wp-content/uploads/2023/02/Illustrations-patrimoine-essonne-Marketing-territorial-Agatha-Miquel-768x768.png 768w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-87d86e0 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="87d86e0" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-99715f1" data-id="99715f1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-08c0e2e elementor-widget elementor-widget-image" data-id="08c0e2e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Expo - Illustrations marketing territorial - Agatha Miquel Vue d&#039;ensemble" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEyNiwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9FeHBvLUlsbHVzdHJhdGlvbnMtbWFya2V0aW5nLXRlcnJpdG9yaWFsLUFnYXRoYS1NaXF1ZWwtVnVlLWRlbnNlbWJsZS0xLmpwZWcifQ%3D%3D">
							<img loading="lazy" decoding="async" width="800" height="640" src="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-1024x819.jpeg" class="attachment-large size-large wp-image-2126" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-1024x819.jpeg 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-300x240.jpeg 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1-768x614.jpeg 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-Vue-densemble-1.jpeg 1440w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c364b7f" data-id="c364b7f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9549775 elementor-widget elementor-widget-image" data-id="9549775" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Expo - Illustrations marketing territorial - Agatha Miquel 5" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEyNCwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9FeHBvLUlsbHVzdHJhdGlvbnMtbWFya2V0aW5nLXRlcnJpdG9yaWFsLUFnYXRoYS1NaXF1ZWwtNS5qcGVnIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="600" src="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5-1024x768.jpeg" class="attachment-large size-large wp-image-2124" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5-1024x768.jpeg 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5-300x225.jpeg 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5-768x576.jpeg 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5-1536x1152.jpeg 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-5.jpeg 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c999165" data-id="c999165" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-843b497 elementor-widget elementor-widget-image" data-id="843b497" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="Expo - Illustrations marketing territorial - Agatha Miquel 6" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjEyNSwidXJsIjoiaHR0cHM6XC9cL2FnYXRoYW1pcXVlbC5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzAyXC9FeHBvLUlsbHVzdHJhdGlvbnMtbWFya2V0aW5nLXRlcnJpdG9yaWFsLUFnYXRoYS1NaXF1ZWwtNi5qcGVnIn0%3D">
							<img loading="lazy" decoding="async" width="800" height="600" src="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6-1024x768.jpeg" class="attachment-large size-large wp-image-2125" alt="" srcset="https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6-1024x768.jpeg 1024w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6-300x225.jpeg 300w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6-768x576.jpeg 768w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6-1536x1152.jpeg 1536w, https://agathamiquel.com/wp-content/uploads/2023/02/Expo-Illustrations-marketing-territorial-Agatha-Miquel-6.jpeg 2048w" sizes="(max-width: 800px) 100vw, 800px" />								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>L’article <a href="https://agathamiquel.com/exposition-illustrations-du-patrimoine-de-lessonne/">[Exposition] Illustrations du patrimoine de l&rsquo;Essonne</a> est apparu en premier sur <a href="https://agathamiquel.com">Agatha Miquel</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2105</post-id>	</item>
	</channel>
</rss>
