First commit

This commit is contained in:
cedric 2025-11-30 01:37:28 +01:00
commit de232726b7
53 changed files with 3155 additions and 0 deletions

81
404.html Normal file
View file

@ -0,0 +1,81 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune | Tarifs</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="https://laparenthesebleue.fr/mentions">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="/config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<!--h1>Educatrice, spécialisée pour les personnes avec un TSA</h1-->
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<section>
<h2>404 : Cette page n'existe pas</h2>
<p>Rendez-vous dans le menu pour accéder à notre contenu.</p>
</section>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo" loading="lazy">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>

21
config/site.webmanifest Normal file
View file

@ -0,0 +1,21 @@
{
"name": "La parenthèse bleue",
"short_name": "La parenthèse bleue",
"description": "Un accompagnement éducatif empreint de bienveillance.",
"start_url": "../index.html",
"display": "standalone",
"icons": [
{
"src": "../images/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "../images/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#004064",
"background_color": "#004064"
}

61
css/cv.css Normal file
View file

@ -0,0 +1,61 @@
section h2 {
margin-bottom: 0;
}
.resume-box ul {
margin: 0;
padding: 30px 20px;
list-style: none;
text-align: left;
}
.resume-box li {
position: relative;
padding: 0 20px 0 60px;
margin: 0 0 30px;
}
.resume-box li:after {
content: "";
position: absolute;
top: 0;
left: 20px;
border-left: 1px dashed #004080;
bottom: 0;
}
.resume-box li:last-child {
margin-bottom: 0;
}
.resume-box .resume-icon {
width: 40px;
height: 40px;
position: absolute;
left: 0;
right: 0;
color: #004080;
line-height: 40px;
background: #ffffff;
text-align: center;
z-index: 1;
border: 1px dashed;
border-radius: 50%;
}
.resume-box .resume-details {
background: #2E8BC0;
color: #ffffff;
font-size: 14px;
padding: 2px 14px;
display: inline-block;
margin-bottom: 12px;
border-radius: 20px;
line-height: 2;
}
.resume-logo {
filter: brightness(0) saturate(100%) invert(19%) sepia(20%) saturate(5803%) hue-rotate(178deg) brightness(91%) contrast(103%);
border-radius: 0;
margin-top: 7px;
}

216
css/home.css Normal file
View file

@ -0,0 +1,216 @@
.home-bg {
background-image: url('../images/illustrations/home/autism-background.webp');
height: 100vh;
min-height: 750px;
background-position: right;
background-repeat: no-repeat;
background-size: cover;
position: relative;
z-index: 1;
color: white;
}
.home-bg::after {
content: "";
display: block;
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #004064E0;
}
.home-header {
text-align: center;
margin-left: 10px;
margin-right: 10px;
}
.home-title {
font-family: DancingScript;
text-align: center;
font-size: 100px;
line-height: 1.1;
font-weight: normal;
padding-top: 50px;
margin: 5px;
}
.home-headline {
font-size: 24px;
}
.home-footer {
padding-left: 48px;
padding-top: 100px;
}
.home-contact {
font-size: 16px;
text-transform: uppercase;
}
.home-contact-content {
margin-top: 20px;
}
.home-contact-logo {
min-width: 40px;
min-height: 40px;
border-radius: 50%;
border: 1px solid white;
text-decoration: none;
justify-content: center;
margin-bottom: 5px;
}
.home-contact-text {
display: inline-flex;
align-items: center;
color: white;
margin-right: 15px;
}
.home-contact-link {
color: white;
}
.home-photo {
height: 400px;
}
.home-prestations {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-column-gap: 40px;
align-items: stretch;
text-align: left;
margin-top: 50px;
}
.home-prestations-title {
display: flex;
justify-content: center;
align-items: center;
height: 70px;
}
.home-prestations-title h3 {
margin-left: 20px;
width: 100%;
}
.home-logo {
height: 50px;
width: 50px;
border-radius: 0;
}
.home-map-display {
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
}
.home-resources {
text-align: center;
}
.home-resources a {
text-decoration: none;
}
.home-resources img {
margin: 1%;
}
@media (max-width: 1000px) {
.home-prestations {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-column-gap: 40px;
align-items: stretch;
text-align: left;
}
.home-resources span {
display: block;
}
.home-resources img {
width: 25%;
}
}
@media (max-width: 795px) {
.home-prestations {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
grid-column-gap: 40px;
align-items: stretch;
text-align: left;
}
}
@media (max-width: 735px) {
.illustrated-left {
float: none;
}
.home-photo {
margin: auto;
display: block;
}
}
@media (max-width: 485px) {
.home-photo {
height: 100%;
width: 100%;
}
}
@media (max-width: 390px) {
.home-contact-content {
font-size: 14px;
}
.home-contact-logo {
display: none;
}
.home-footer div div {
margin-top: 12px;
}
}
@media (max-width: 50em) {
.home-title {
font-size: 60px;
}
.home-headline {
font-size: 17px;
}
}

373
css/main.css Normal file
View file

@ -0,0 +1,373 @@
:root {
--dark: #004064;
--light: #2E8BC0;
}
@font-face {
font-family: DancingScript;
src: url('../fonts/DancingScript/DancingScript-Regular.ttf');
font-display: swap;
}
body {
margin: 0;
height: 100%;
font-family: Arial, sans-serif;
color: midnightblue;
font-size: 18px;
line-height: 1.6;
}
h1 {
font-size: 1rem;
margin-top: auto;
margin-bottom: auto;
margin-right: auto;
}
a {
color: var(--light);
}
section {
padding: 2rem;
max-width: 1040px;
text-align: justify;
margin: 0 auto 0 auto;
}
section h2 {
margin-bottom: 4rem;
position: relative;
--display: inline;
text-align: center;
padding-right: 0;
}
section h2::after {
content: "";
width: 125px;
height: 30px;
position: absolute;
bottom: -25px;
right: -30px;
background-image: url(../images/illustrations/marker.svg);
background-repeat: no-repeat;
left: 50%;
margin-left: -60px;
}
section h3 {
text-align: left;
}
strong {
color: var(--light);
}
img {
border-radius: 25px;
}
footer {
padding: 3rem;
text-align: center;
background: var(--dark);
color: white;
}
footer h2 {
font-family: DancingScript;
font-size: 30px;
line-height: 0;
}
footer a {
color: white;
}
.unmarged {
margin: 0;
}
footer div {
margin-top: 2rem;
margin-bottom: 2rem;
}
.footer-contact {
justify-content: center;
list-style-type: none;
display: flex;
font-size: 25px;
}
.footer-contact a {
display: block;
padding: 0.5rem 1rem;
color: white;
text-decoration: none;
}
.contact-logo {
filter: brightness(0) saturate(100%) invert(100%) sepia(31%) saturate(2%) hue-rotate(307deg) brightness(102%) contrast(100%);
border-radius: 0;
}
.navigate-button {
display: flex;
align-items: center;
justify-content: center;
max-height: 50px;
font-weight: 700;
text-decoration: none;
color: #fff;
background-color: var(--light);
border-radius: 10px;
cursor: pointer;
text-align: center;
margin-top: 15px;
padding: 10px;
margin-bottom: 15px;
}
.illustrated {
width: 400px;
}
.illustrated-right {
float: right;
margin-left: 20px;
}
.illustrated-left {
float: left;
margin-right: 20px;
}
.square-24 {
height: 24px;
width: 24px;
}
.square-18 {
height: 18px;
width: 18px;
}
.square-40 {
height: 40px;
width: 40px;
}
/************************/
@media (max-width: 575px) {
section h2 {
padding-right: 0;
}
section h2::after {
bottom: -30px;
left: 50%;
margin-left: -60px;
}
.illustrated {
width: 100%;
}
}
/************************/
@media (max-width: 50em) {
body {
font-size: 16px;
}
}
@media (max-width: 735px) {
.illustrated {
float: none;
margin: auto;
display: block;
}
}
/***************************/
/* header */
header {
padding-bottom: 50px;
}
.header {
color: white;
background-color: #0d496b;
position: fixed;
width: 100%;
z-index: 3;
line-height: 1;
display: block;
}
.header a {
color: white;
}
.header ul {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
}
.header li a {
display: block;
padding: 20px 20px;
text-decoration: none;
}
.header .brand {
height: 40px;
margin: 10px;
}
/* menu */
.header .menu {
clear: both;
max-height: 0;
transition: max-height .2s ease-out;
}
/* menu icon */
.header .menu-icon {
cursor: pointer;
display: inline-block;
float: right;
padding: 28px 20px;
position: relative;
user-select: none;
}
.header .menu-icon .navicon {
background: white;
display: block;
height: 2px;
position: relative;
transition: background .2s ease-out;
width: 18px;
}
.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
background: white;
content: '';
display: block;
height: 100%;
position: absolute;
transition: all .2s ease-out;
width: 100%;
}
.header .menu-icon .navicon:before {
top: 5px;
}
.header .menu-icon .navicon:after {
top: -5px;
}
/* menu btn */
.header .menu-btn {
display: none;
}
.header .menu-btn:checked ~ .menu {
max-height: 265px;
}
.header .menu-btn:checked {
font-size: 1px;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:before,
.header .menu-btn:checked ~ .menu-icon .navicon:after {
top: 0;
}
/* 48em = 768px */
@media (min-width: 48em) {
.header li {
float: left;
}
.header li a {
padding: 20px 30px;
}
.header .menu {
clear: none;
float: right;
max-height: none;
}
.header .menu-icon {
display: none;
}
}
@media (max-width: 390px) {
section {
text-align: center;
}
section h3 {
text-align: center;
}
li {
list-style-type: none;
margin-right: 45px;
margin-bottom: 10px;
margin-top: 10px;
}
.footer-contact {
margin-right: 35px;
}
.footer-contact li {
margin: 0;
}
}

33
css/price.css Normal file
View file

@ -0,0 +1,33 @@
.price-item {
display: grid;
grid-template-columns: 9fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 40px;
align-items: stretch;
}
.price-item div:last-child {
background-color: var(--light);
border-radius: 25px;
color: white;
margin-top: 20px;
margin-bottom: 20px;
font-size: 20px;
padding-top: 33%;
text-align: center;
}
.devis {
text-align: center;
font-size: 24px;
}
@media (max-width: 50em) {
.price-item div:last-child {
font-size: 15px;
height: 50px;
width: 50px;
border-radius: 10px;
}
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
images/icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
images/icons/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

38
images/icons/favicon.svg Normal file
View file

@ -0,0 +1,38 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" width="100" height="100"><svg version="1.1" width="100" height="100" style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" id="SvgjsSvg1023" sodipodi:docname="logo.svg" inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" inkscape:export-filename="C:\Users\cpinte\Downloads\v1.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="SvgjsMetadata1022">
<rdf:rdf>
<cc:work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="https://purl.org/dc/dcmitype/StillImage"></dc:type>
</cc:work>
</rdf:rdf>
</metadata>
<defs id="SvgjsDefs1021"></defs>
<sodipodi:namedview pagecolor="#9e9e9e" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1131" id="SvgjsSodipodi:namedview1020" showgrid="false" inkscape:zoom="3.2833082" inkscape:cx="200.10305" inkscape:cy="118.17349" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg26" inkscape:showpageshadow="2" inkscape:pagecheckerboard="0" inkscape:deskcolor="#9e9e9e"></sodipodi:namedview>
<g id="SvgjsG1019" style="fill:none;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" transform="matrix(0.36660232,0.44188394,-0.44188394,0.36660232,378.21795,-85.735153)">
<path style="opacity:1;fill:none;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" fill="#fefefe" d="m -0.5,-0.5 c 307.333,0 614.667,0 922,0 0,296 0,592 0,888 -307.333,0 -614.667,0 -922,0 0,-296 0,-592 0,-888 z" id="SvgjsPath1018"></path>
</g>
<g id="SvgjsG1017" style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,306.17176,-163.63856)">
<path style="opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" fill="#facdc4" d="m 774.5,201.5 c 0.05,5.889 -0.616,11.556 -2,17 -0.05,-5.889 0.616,-11.556 2,-17 z" id="SvgjsPath1016"></path>
</g>
<text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:30.5234px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.763085;stroke-miterlimit:4;stroke-dasharray:none" x="-134.23529" y="-159.94829" id="SvgjsText1015" transform="rotate(50.319716)" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}"><tspan sodipodi:role="line" id="SvgjsTspan1014" x="-134.23529" y="-159.94829" style="stroke-width:0.763085" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}"></tspan></text>
<g id="SvgjsG1013" transform="matrix(0.12757349,0,0,0.12757349,-13.226862,-5.8209353)">
<g id="SvgjsG1012" style="stroke:#e6e6e6;stroke-width:10.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(137.18156,112.42639)">
<g id="SvgjsG1011" style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" fill="#cad302" d="m 289.5,40.5 c 23.337,0.3413 36.67,12.008 40,35 -0.78,12.6829 -3.28,25.016 -7.5,37 -2.744,19.08 5.423,29.413 24.5,31 37.401,-3.215 74.401,-8.881 111,-17 7.6,33.937 12.933,68.27 16,103 2.172,9.368 -1.328,14.701 -10.5,16 -9.512,-2.086 -19.012,-4.253 -28.5,-6.5 -24.723,-5.215 -43.889,2.618 -57.5,23.5 -10.912,25.184 -5.745,46.35 15.5,63.5 11.745,7.089 24.412,9.422 38,7 10.827,-1.874 21.494,-4.374 32,-7.5 7.101,0.601 11.101,4.434 12,11.5 -3.666,36.502 -9.333,72.669 -17,108.5 -37.089,-8.431 -74.589,-14.431 -112.5,-18 -14.592,1.425 -22.758,9.425 -24.5,24 3.305,11.553 6.138,23.219 8.5,35 1.455,30.545 -13.045,45.045 -43.5,43.5 -20.426,-7.341 -29.259,-21.841 -26.5,-43.5 2.505,-11.857 5.005,-23.691 7.5,-35.5 -2.027,-14.689 -10.527,-22.523 -25.5,-23.5 -37.29,3.354 -74.124,9.354 -110.5,18 -7.76,-35.815 -13.426,-71.981 -17,-108.5 0.432,-6.932 4.099,-10.765 11,-11.5 10.215,2.97 20.548,5.47 31,7.5 29.798,4.367 49.631,-7.466 59.5,-35.5 4.752,-26.101 -4.748,-44.934 -28.5,-56.5 -9.434,-3.111 -19.101,-4.111 -29,-3 -10.954,2.098 -21.787,4.598 -32.5,7.5 -7.142,-0.475 -10.975,-4.308 -11.5,-11.5 2.892,-35.579 8.392,-70.745 16.5,-105.5 0.839,-1.124 2.006,-1.791 3.5,-2 37.117,9.409 74.784,14.909 113,16.5 12.993,-2.49 19.659,-10.323 20,-23.5 -2.487,-11.957 -4.987,-23.9571 -7.5,-36 -2.042,-23.1087 8.125,-37.4421 30.5,-43 z" id="SvgjsPath1010"></path>
</g>
<g id="SvgjsG1009" style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" fill="#ee6a5e" d="m 774.5,201.5 c -1.384,5.444 -2.05,11.111 -2,17 -1.751,9.481 -1.251,18.814 1.5,28 6.42,10.291 15.586,14.124 27.5,11.5 15.452,-6.576 31.452,-8.576 48,-6 20.184,8.868 27.684,24.035 22.5,45.5 -6.46,15.821 -18.293,23.487 -35.5,23 -12.955,-0.891 -25.621,-3.391 -38,-7.5 -17.108,-0.724 -26.108,7.442 -27,24.5 2.805,37.444 8.472,74.444 17,111 -34.852,8.607 -70.185,14.273 -106,17 -8.227,0.608 -12.56,-3.225 -13,-11.5 3.625,-11.909 6.125,-24.075 7.5,-36.5 1.632,-26.258 -9.868,-43.758 -34.5,-52.5 -32.111,-5.534 -52.611,7.299 -61.5,38.5 -0.361,17.669 2.473,34.835 8.5,51.5 -1.51,7.598 -6.177,11.098 -14,10.5 -35.693,-2.719 -70.86,-8.386 -105.5,-17 7.046,-32.277 12.379,-64.944 16,-98 0.667,-7.333 0.667,-14.667 0,-22 -4.671,-9.923 -12.505,-15.256 -23.5,-16 -10.437,3.108 -21.104,5.608 -32,7.5 -23.354,3.922 -38.521,-5.245 -45.5,-27.5 -2.136,-20.86 6.698,-34.693 26.5,-41.5 4.667,-0.667 9.333,-0.667 14,0 12.52,2.422 25.02,4.922 37.5,7.5 12.094,-0.435 19.76,-6.435 23,-18 0.667,-7.667 0.667,-15.333 0,-23 -3.561,-32.037 -9.061,-63.704 -16.5,-95 34.864,-8.442 70.198,-14.109 106,-17 7.372,-0.13 12.039,3.37 14,10.5 -4.547,13.817 -7.547,27.983 -9,42.5 2.155,30.321 18.322,46.988 48.5,50 34.166,-4.174 50.166,-23.508 48,-58 -1.872,-11.487 -4.372,-22.82 -7.5,-34 0.735,-6.902 4.569,-10.569 11.5,-11 36.192,3.48 72.025,9.146 107.5,17 -6.211,26.057 -10.878,52.39 -14,79 z" id="SvgjsPath1008"></path>
</g>
<g id="SvgjsG1007" style="fill:#d81bff;fill-opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path style="opacity:1;fill:#d81bff;fill-opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" fill="#03b4e5" d="m 623.5,375.5 c 20.676,-0.921 34.176,8.412 40.5,28 0.667,4.667 0.667,9.333 0,14 -2.031,12.453 -4.531,24.787 -7.5,37 1.152,15.486 9.486,23.486 25,24 37.443,-2.971 74.443,-8.638 111,-17 8.302,35.051 13.969,70.551 17,106.5 -0.025,7.518 -3.691,11.685 -11,12.5 -12.173,-3.223 -24.507,-5.723 -37,-7.5 -26.748,-1.546 -44.581,10.287 -53.5,35.5 -4.758,25.314 4.076,44.147 26.5,56.5 6.382,2.762 13.048,4.262 20,4.5 14.99,-1.498 29.656,-4.498 44,-9 6.872,0.769 10.539,4.602 11,11.5 -3.019,36.593 -8.686,72.759 -17,108.5 -36.558,-8.37 -73.558,-14.037 -111,-17 -18.079,1.248 -26.246,10.915 -24.5,29 4.003,11.511 6.503,23.344 7.5,35.5 -2.145,27.14 -16.811,39.474 -44,37 -20.098,-7.012 -28.932,-21.179 -26.5,-42.5 2.569,-12.014 5.069,-24.014 7.5,-36 -0.365,-10.888 -5.699,-18.388 -16,-22.5 -13.399,-0.727 -26.732,-0.06 -40,2 -26.881,3.743 -53.548,8.577 -80,14.5 -6.783,-31.032 -11.95,-62.366 -15.5,-94 -0.667,-6.667 -0.667,-13.333 0,-20 2.345,-3.684 5.678,-5.684 10,-6 13.799,4.726 27.965,7.726 42.5,9 29.512,-2.512 45.846,-18.512 49,-48 -0.575,-21.404 -10.575,-36.571 -30,-45.5 -12.529,-4.289 -25.196,-4.622 -38,-1 -7.646,1.995 -15.313,3.828 -23,5.5 -9.523,-0.995 -13.19,-6.328 -11,-16 2.751,-34.753 8.085,-69.086 16,-103 36.367,8.533 73.2,14.2 110.5,17 18.867,-1.201 27.2,-11.201 25,-30 -3.296,-10.103 -5.629,-20.436 -7,-31 -1.279,-21.877 8.554,-35.877 29.5,-42 z" id="SvgjsPath1006"></path>
</g>
<g id="SvgjsG1005" style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" fill="#fed902" d="m 235.5,440.5 c 9.874,-2.071 16.207,1.596 19,11 -6.875,17.805 -9.375,36.138 -7.5,55 8.639,26.245 26.806,38.412 54.5,36.5 26.176,-6.329 39.843,-22.995 41,-50 -1.214,-14.071 -4.214,-27.737 -9,-41 0.849,-6.849 4.683,-10.683 11.5,-11.5 36.552,3.278 72.719,8.944 108.5,17 -8.609,36.201 -14.275,72.868 -17,110 -0.922,12.909 4.745,21.409 17,25.5 2.167,0.167 4.333,0.333 6.5,0.5 11.403,-2.724 22.903,-5.224 34.5,-7.5 21.696,-2.744 36.196,6.089 43.5,26.5 3.232,19.349 -3.935,33.182 -21.5,41.5 -6.858,2.155 -13.858,2.822 -21,2 -12.014,-2.569 -24.014,-5.069 -36,-7.5 -15.355,0.857 -23.022,9.024 -23,24.5 2.765,37.621 8.431,74.788 17,111.5 -34.606,7.823 -69.606,13.156 -105,16 -8.717,1.272 -13.717,-2.395 -15,-11 3.785,-11.421 6.618,-23.088 8.5,-35 1.851,-27.14 -9.982,-45.307 -35.5,-54.5 -32.046,-4.944 -52.213,8.222 -60.5,39.5 -0.667,4.667 -0.667,9.333 0,14 2.056,12.116 4.556,24.116 7.5,36 -0.847,9.364 -6.013,13.031 -15.5,11 -34.927,-2.68 -69.427,-8.013 -103.5,-16 8.486,-37.045 14.152,-74.545 17,-112.5 -0.963,-14.632 -8.797,-22.799 -23.5,-24.5 -12.03,3.382 -24.197,6.216 -36.5,8.5 -25.3094,1.528 -39.6428,-10.305 -43,-35.5 3.8366,-24.676 18.1699,-36.176 43,-34.5 12.04,2.405 24.04,4.905 36,7.5 15.964,-1.298 23.964,-9.965 24,-26 -2.725,-37.142 -8.392,-73.808 -17,-110 33.46,-7.629 67.126,-13.296 101,-17 z" id="SvgjsPath1004"></path>
</g>
</g>
<text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:572.454px;line-height:1.25;font-family:sans-serif;clip-rule:evenodd;fill:#03b4e5;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" x="150.47546" y="573.55658" id="SvgjsText1003" transform="rotate(6.4525798)" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}"><tspan sodipodi:role="line" id="SvgjsTspan1002" x="150.47546" y="573.55658" style="font-size:572.454px;fill:#03b4e5;fill-opacity:1;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}">(</tspan></text>
<text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:572.454px;line-height:1.25;font-family:sans-serif;clip-rule:evenodd;fill:#03b4e5;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" x="-934.48035" y="-138.46599" id="SvgjsText1001" transform="rotate(-167.76694)" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}"><tspan sodipodi:role="line" id="SvgjsTspan1000" x="-934.48035" y="-138.46599" style="font-size:572.454px;fill:#03b4e5;fill-opacity:1;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" svgjs:data="{&quot;leading&quot;:&quot;1.3&quot;}">(</tspan></text>
</g>
</svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
</style></svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,112 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="922.000000pt" height="922.000000pt" viewBox="0 0 922.000000 922.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,922.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M4975 8219 c-61 -32 -121 -64 -135 -71 -35 -17 -304 -180 -310 -187
-3 -3 -13 -10 -22 -16 -172 -100 -205 -143 -196 -248 2 -21 85 -107 104 -107
7 0 14 -3 16 -8 2 -4 23 -23 48 -42 128 -98 184 -189 186 -305 1 -90 -19 -145
-77 -209 -52 -57 -114 -92 -174 -100 -22 -2 -42 -5 -45 -6 -5 -2 -28 -1 -85 4
-37 4 -110 44 -148 83 -33 32 -110 144 -113 162 0 3 -17 41 -37 83 -52 107
-110 143 -190 115 -28 -9 -167 -142 -167 -158 0 -5 -6 -9 -14 -9 -8 0 -16 -4
-18 -8 -4 -12 -79 -99 -150 -175 -32 -34 -58 -65 -58 -68 0 -3 -12 -19 -27
-35 -72 -77 -203 -244 -203 -260 0 -8 -4 -14 -8 -14 -5 0 -13 -8 -18 -19 -5
-10 -22 -36 -39 -56 -66 -83 -182 -223 -195 -237 -8 -9 -43 -47 -78 -85 -83
-94 -216 -227 -255 -257 -42 -31 -87 -41 -111 -23 -17 13 -16 17 17 98 60 144
136 303 219 459 51 96 133 235 140 238 5 2 8 8 8 12 0 8 134 222 153 245 5 6
23 31 40 56 42 60 105 149 162 227 44 59 45 62 23 63 -27 2 -42 3 -118 13 -30
4 -75 9 -100 12 -25 2 -63 7 -85 10 -22 3 -58 7 -80 9 -49 4 -141 14 -176 20
-19 4 -33 -3 -56 -28 -35 -37 -173 -214 -173 -222 0 -3 -8 -14 -17 -24 -26
-28 -35 -40 -73 -96 -18 -27 -36 -52 -40 -55 -3 -3 -32 -45 -64 -95 -32 -49
-67 -102 -77 -117 -11 -15 -19 -30 -19 -33 0 -4 -11 -21 -24 -38 -13 -18 -34
-52 -47 -77 -13 -25 -27 -47 -30 -50 -3 -3 -23 -36 -43 -75 -48 -91 -59 -105
-85 -110 -43 -8 -128 -53 -160 -84 -17 -17 -29 -31 -25 -31 4 0 0 -8 -9 -18
-28 -30 -57 -109 -60 -159 -3 -41 1 -70 16 -128 2 -5 11 -25 20 -43 18 -32 17
-34 -19 -134 -20 -56 -37 -107 -38 -112 -1 -6 -4 -15 -7 -21 -4 -5 -10 -23
-14 -40 -12 -49 -14 -57 -35 -130 -11 -38 -23 -83 -26 -99 -3 -16 -7 -32 -9
-36 -4 -7 -15 -54 -19 -85 -10 -73 -20 -97 -45 -108 -14 -6 -28 -14 -31 -17
-3 -4 -25 -17 -50 -29 -69 -35 -184 -95 -197 -104 -9 -6 3 -38 44 -115 70
-134 110 -207 140 -254 12 -21 23 -42 23 -48 0 -5 4 -10 9 -10 16 0 23 -54 27
-215 2 -88 5 -182 8 -210 3 -27 7 -81 10 -120 4 -38 8 -81 11 -95 3 -14 8 -45
10 -70 2 -25 7 -56 10 -70 3 -14 8 -41 10 -60 3 -19 8 -46 12 -60 3 -14 7 -38
9 -54 2 -16 8 -45 13 -65 6 -20 12 -47 15 -61 2 -14 7 -32 10 -40 3 -8 8 -26
10 -40 3 -14 10 -43 16 -65 6 -22 13 -47 15 -55 2 -8 4 -15 5 -15 1 0 3 -8 5
-17 2 -10 13 -49 25 -87 12 -39 22 -74 22 -78 1 -5 14 -44 30 -88 16 -44 31
-87 33 -97 2 -9 11 -30 19 -47 9 -17 15 -32 14 -33 -2 -3 15 -50 67 -183 5
-11 9 -22 10 -25 0 -3 8 -19 18 -36 9 -17 14 -34 11 -36 -2 -3 2 -11 11 -18 8
-7 15 -19 15 -26 0 -19 137 -311 149 -319 8 -5 71 -13 161 -21 36 -3 76 -7 90
-9 14 -3 50 -7 80 -10 30 -4 71 -8 90 -11 19 -2 64 -7 100 -10 36 -3 70 -7 75
-8 13 -1 8 18 -21 82 -13 29 -24 54 -24 56 0 2 -12 30 -27 62 -15 33 -27 61
-27 64 -1 3 -20 52 -43 110 -45 114 -85 226 -128 360 -15 47 -30 92 -33 100
-2 8 -6 22 -8 30 -1 8 -12 49 -24 90 -12 41 -24 88 -26 103 -2 16 -6 33 -10
38 -3 5 -7 19 -10 32 -2 12 -6 32 -9 45 -5 21 -9 39 -20 92 -6 26 -12 57 -20
100 -11 59 -14 71 -20 80 -19 31 23 0 98 -72 116 -113 197 -188 202 -188 2 0
15 -10 27 -22 73 -71 309 -258 325 -258 6 0 21 -9 34 -21 13 -11 37 -30 52
-42 15 -12 38 -30 50 -40 12 -10 35 -28 50 -40 15 -12 38 -31 51 -42 12 -11
46 -40 76 -65 105 -88 146 -126 241 -220 53 -52 106 -110 119 -129 53 -77 27
-139 -83 -196 -234 -122 -263 -144 -313 -239 -18 -34 -40 -117 -37 -136 1 -3
4 -30 8 -60 4 -30 12 -61 17 -67 6 -7 7 -13 3 -13 -6 0 50 -74 81 -107 6 -6
35 -26 65 -45 50 -31 60 -33 139 -33 75 0 93 4 150 31 72 35 135 94 201 186
76 106 113 138 162 138 32 0 78 -24 100 -52 46 -58 87 -118 82 -118 -3 0 2 -8
11 -17 23 -25 114 -170 114 -182 0 -5 4 -11 9 -13 5 -1 22 -26 37 -54 16 -29
48 -86 72 -127 23 -42 42 -80 42 -86 0 -5 4 -11 8 -13 4 -2 25 -38 46 -80 21
-43 42 -78 47 -78 12 0 213 100 219 110 3 4 16 11 30 15 14 4 27 11 30 14 3 4
37 25 75 46 39 21 100 58 138 82 37 24 71 43 76 43 5 0 11 3 13 8 2 4 49 38
106 76 110 73 142 113 136 172 -4 53 -25 78 -129 157 -191 144 -226 194 -231
327 -3 101 22 167 87 231 90 86 193 114 314 83 73 -18 187 -123 209 -192 4
-12 12 -22 17 -22 5 0 9 -9 9 -20 0 -11 3 -20 8 -20 4 0 23 -33 42 -74 42 -90
88 -122 158 -113 52 8 89 39 251 215 120 130 151 166 151 175 0 5 5 5 10 2 6
-3 10 -1 10 4 0 11 19 37 51 70 27 28 161 203 173 225 10 20 90 128 111 152 6
6 24 28 40 49 17 21 41 49 54 62 13 12 21 23 17 23 -4 0 3 10 16 23 13 12 53
56 88 97 36 40 118 127 182 191 93 94 124 119 153 125 20 3 38 4 41 1 3 -3 -5
-27 -17 -53 -40 -89 -192 -399 -198 -404 -3 -3 -19 -30 -36 -60 -75 -140 -281
-451 -385 -580 -11 -14 -39 -50 -62 -80 -24 -30 -45 -57 -48 -60 -3 -3 -37
-43 -76 -90 -39 -47 -82 -97 -95 -111 -83 -90 -154 -172 -157 -179 -2 -5 8
-12 22 -15 14 -3 38 -8 54 -12 15 -4 36 -8 47 -10 11 -1 49 -9 85 -18 69 -16
149 -33 190 -41 14 -2 32 -7 40 -10 8 -3 33 -8 55 -11 22 -3 47 -9 55 -13 8
-4 24 -6 34 -4 26 4 267 253 382 394 16 19 31 37 34 40 18 17 148 181 214 270
43 58 82 107 87 108 5 2 9 8 9 13 0 5 32 57 70 114 39 57 70 109 70 114 0 5 4
11 8 13 4 1 36 50 69 108 75 128 77 130 111 130 16 0 33 5 40 12 7 7 12 9 12
5 0 -10 87 49 116 78 12 12 33 43 48 69 49 88 49 205 0 299 -15 30 -22 53 -16
60 4 7 17 39 27 72 11 33 22 65 26 70 6 10 19 55 18 65 -1 3 6 23 15 45 8 22
17 52 20 67 3 15 7 31 10 36 3 5 7 19 10 33 3 13 17 73 31 133 14 59 22 112
19 117 -3 5 0 9 7 9 7 0 9 3 6 6 -10 10 12 44 28 44 8 0 15 5 15 10 0 6 9 10
20 10 11 0 20 4 20 9 0 5 6 11 13 13 6 2 63 29 125 61 83 42 111 61 104 70 -5
7 -29 50 -53 97 -24 47 -65 122 -91 168 -26 46 -48 88 -48 93 0 5 -4 9 -8 9
-4 0 -13 12 -20 28 -7 15 -19 38 -26 52 -10 18 -16 83 -20 220 -4 107 -8 209
-10 225 -2 17 -7 62 -11 100 -3 39 -8 77 -10 85 -2 8 -7 38 -10 66 -3 28 -8
61 -11 75 -3 13 -7 38 -9 54 -7 54 -21 133 -31 175 -3 14 -7 37 -9 52 -2 14
-5 31 -9 36 -3 5 -8 24 -11 43 -5 30 -31 132 -80 314 -7 28 -20 71 -29 96 -8
25 -17 54 -19 65 -2 10 -7 26 -10 34 -11 29 -58 165 -62 180 -2 8 -4 16 -5 18
-2 1 -3 5 -5 10 -1 4 -5 14 -8 22 -4 8 -14 37 -24 64 -10 27 -25 50 -33 51 -8
2 -58 12 -110 23 -52 12 -108 24 -125 27 -35 7 -46 9 -140 31 -38 8 -79 17
-90 19 -11 1 -38 8 -60 14 -54 15 -70 14 -57 -1 6 -7 10 -15 10 -18 0 -12 24
-98 38 -135 9 -22 16 -41 15 -42 0 -2 1 -8 4 -15 5 -17 61 -215 70 -253 5 -16
9 -34 11 -40 3 -11 11 -44 18 -72 2 -10 9 -38 16 -63 6 -25 12 -54 14 -65 2
-11 9 -45 16 -75 20 -95 22 -104 24 -130 2 -14 7 -33 11 -43 4 -10 5 -20 2
-23 -3 -3 -1 -20 4 -37 5 -18 12 -58 15 -90 l6 -59 -75 74 c-84 82 -145 139
-232 215 -101 87 -108 93 -157 131 -27 20 -48 40 -48 44 0 4 -7 8 -15 8 -8 0
-15 3 -15 8 0 4 -17 18 -38 32 -20 14 -46 33 -56 43 -11 9 -28 17 -38 17 -10
0 -18 4 -18 8 0 5 -18 21 -40 38 -22 16 -51 38 -64 49 -12 11 -42 36 -66 55
-23 19 -61 51 -84 71 -23 20 -51 44 -64 55 -13 10 -49 43 -80 72 -30 28 -60
52 -64 52 -5 0 -6 5 -3 10 3 6 2 10 -3 10 -11 0 -173 160 -188 186 -19 33 -25
79 -15 106 15 40 48 66 141 110 210 100 293 190 305 330 2 27 7 53 10 58 4 6
2 10 -3 10 -5 0 -10 10 -10 23 0 19 -25 78 -67 158 -5 11 -14 19 -19 19 -5 0
-17 6 -25 14 -38 34 -121 66 -181 70 -137 8 -232 -51 -365 -229 -72 -96 -100
-122 -137 -130 -52 -12 -91 11 -143 83 -27 37 -52 69 -55 72 -11 10 -167 255
-200 315 -72 130 -114 208 -115 215 -3 14 -46 90 -55 95 -44 27 -65 23 -175
-36z m2491 -2800 c7 -138 9 -345 4 -482 -3 -87 -12 -100 -80 -113 -47 -9 -85
-5 -145 13 -34 10 -128 74 -149 101 -27 35 -67 122 -61 132 3 5 1 11 -4 14
-16 11 -4 127 20 178 12 26 26 48 31 48 4 0 8 5 8 11 0 20 63 74 135 116 72
42 179 93 194 93 5 0 14 7 21 15 7 9 14 14 16 12 2 -2 7 -64 10 -138z m-5062
-893 c59 -35 133 -120 150 -176 60 -184 -24 -336 -239 -435 -22 -10 -67 -31
-99 -46 -33 -16 -60 -29 -61 -29 0 0 -1 8 -1 18 -1 9 -5 58 -9 107 -4 50 -10
196 -12 326 l-4 236 28 11 c47 18 65 21 136 17 50 -2 78 -10 111 -29z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 50 50"
xml:space="preserve"
id="svg42"
sodipodi:docname="adapted-tools.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs46" /><sodipodi:namedview
id="namedview44"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="9.2070179"
inkscape:cx="-11.512957"
inkscape:cy="25.958459"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg42" /><rect
x="41.643112"
y="29.037201"
width="1.5101547"
height="1.5494571"
id="rect2"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><rect
x="41.643112"
y="38.333942"
width="1.5101547"
height="1.5494571"
id="rect4"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><rect
x="41.643112"
y="18.965729"
width="1.5101547"
height="1.9802061"
id="rect6"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 37.112648,41.432857 v 4.648372 h 10.571838 l -7.55e-4,-4.648372 z m 3.020309,3.098914 h -1.510155 v -1.549457 h 1.510155 z m 3.02031,0 h -1.510155 v -1.549457 h 1.510155 z m 3.020309,0 h -1.510155 v -1.549457 h 1.510155 z"
id="path8"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 37.112648,27.487743 h 10.571838 l -7.55e-4,-4.648371 H 37.112648 Z m 7.550773,-3.529663 h 1.510155 v 1.549457 h -1.510155 z m -3.020309,0 h 1.510155 v 1.549457 h -1.510155 z m -3.02031,0 h 1.510155 v 1.549457 h -1.510155 z"
id="path10"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 14.460326,40.204138 c 0,-0.491953 -0.19481,-0.974609 -0.533839,-1.322462 l 1.067679,-1.095466 c 0.629734,0.645349 0.976315,1.504523 0.976315,2.417928 v 2.778176 h 1.510155 v -6.972557 c 0,-0.272704 0.05437,-0.531463 0.138934,-0.774728 h -0.138934 c -0.917419,0 -1.810676,-0.09762 -2.683545,-0.259534 l -2.551407,1.963937 c -1.450503,1.115609 -2.3158221,2.892061 -2.3158221,4.75141 0,3.275552 2.5967111,5.939844 5.7891781,5.939844 h 3.27175 v -3.098915 h -4.530464 z"
id="path12"
style="fill:none;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 18.99079,36.009757 v 0.774729 h 1.510155 v -0.774729 c 0,-0.426875 -0.339029,-0.774728 -0.755077,-0.774728 -0.416048,0 -0.755078,0.347853 -0.755078,0.774728 z"
id="path14"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><rect
x="18.990791"
y="38.333942"
width="1.5101547"
height="4.6483712"
id="rect16"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 14.445225,27.487743 h -0.739976 c -2.081748,0 -3.7753871,-1.737716 -3.7753871,-3.873642 0,-2.135927 1.6936391,-3.873643 3.7753871,-3.873643 h 0.788301 c 2.760962,-8.330387 0.896584,-3.098914 13.253873,-3.098914 2.665423,0 4.83476,-2.225795 4.83476,-4.960587 0,-1.121807 -0.376028,-2.2226964 -1.059373,-3.0989144 L 30.10855,6.7684031 28.302405,7.6949784 27.979232,6.3694179 C 27.664364,5.0763959 26.972713,3.9274735 26.002439,3.0636511 24.851701,4.7680539 22.966273,5.795344 20.899626,5.795344 h -3.41899 c -7.4941433,0 -13.5913931,6.255933 -13.5913931,13.945114 0,6.232691 4.0071957,11.522538 9.5162401,13.302864 0.607837,-1.795821 0.966499,-3.655944 1.039742,-5.555579 z"
id="path20"
style="fill:none;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1"
sodipodi:nodetypes="csssccscccccssscc" /><path
d="m 29.561874,19.607979 c 0,-0.549282 -0.09891,-1.095466 -0.28844,-1.606787 -0.48929,0.123957 -1.000477,0.189809 -1.526011,0.189809 h -9.51171 c -0.534595,0 -1.041252,-0.117759 -1.502604,-0.323837 -0.487025,0.741415 -0.762628,1.610661 -0.762628,2.515544 v 0.907207 h -2.265232 c -1.248898,0 -2.265232,1.042785 -2.265232,2.324186 0,1.281401 1.016334,2.324185 2.265232,2.324185 h 2.265232 v 0.774729 c 0,2.294746 -0.363947,4.548431 -1.080516,6.711473 0.839646,0.167342 1.70421,0.261084 2.590671,0.261084 H 22.0111 c 1.90657,0 3.644759,-0.734443 4.975205,-1.934497 1.442097,-2.160197 1.591033,-2.631844 2.575569,-5.812789 z"
id="path22"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1"
sodipodi:nodetypes="scsscscssscscssccs" /><path
d="m 39.37788,18.191001 v -0.265732 c 0,-0.62908 0.366212,-1.190758 0.93252,-1.431698 0.566308,-0.240166 1.212655,-0.108462 1.645314,0.336232 l 0.183484,0.188259 2.136114,-2.191707 -0.183484,-0.188259 c -0.433415,-0.444695 -0.561778,-1.107087 -0.327704,-1.688134 0.234074,-0.581046 0.78226,-0.95679 1.395383,-0.95679 h 0.258992 V 8.8942582 h -0.258992 c -0.613123,0 -1.160554,-0.3757433 -1.395383,-0.9567898 C 43.529295,7.356422 43.657658,6.6940291 44.091828,6.2493349 L 44.275312,6.0610759 42.139198,3.8693688 41.955714,4.0576279 C 41.5223,4.5023221 40.875953,4.6348006 40.3104,4.3938601 39.744092,4.1529195 39.37788,3.5912413 39.37788,2.9621617 V 2.6964298 h -3.02031 v 0.2657319 c 0,0.6290796 -0.366212,1.1907578 -0.93252,1.4316984 -0.564798,0.2417153 -1.2119,0.1100114 -1.645314,-0.3362322 l -0.183484,-0.1882591 -2.118747,2.1738883 1.224736,1.5703748 c 0.34205,0.4392711 0.625204,0.9211523 0.844931,1.4316984 0.577634,-1.8833651 2.29317,-3.2499863 4.320553,-3.2499863 2.502326,0 4.530464,2.0809209 4.530464,4.648371 0,2.567451 -2.028138,4.648372 -4.530464,4.648372 -1.647579,0 -3.085246,-0.905658 -3.878077,-2.25446 -0.207647,1.169065 -0.721854,2.229668 -1.452014,3.094265 l 1.058618,1.08617 0.183484,-0.188259 c 0.433414,-0.444694 1.079761,-0.577173 1.645314,-0.336232 0.566308,0.24094 0.93252,0.802618 0.93252,1.431698 v 0.265732 z"
id="path24"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><ellipse
cx="37.867725"
cy="10.443715"
id="circle26"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1"
rx="1.5101547"
ry="1.5494571" /><path
d="m 35.602493,29.59578 c 0,-0.308342 -0.24389,-0.55858 -0.544411,-0.55858 -0.283909,0 -0.540635,0.17354 -0.652387,0.441596 l -1.21945,2.920726 c 0.539125,0.325386 0.906093,0.920378 0.906093,1.607562 0,0.4997 -0.189524,0.969186 -0.53384,1.322462 l -0.442475,0.453991 -1.067679,-1.095466 0.442475,-0.453991 c 0.05814,-0.06043 0.09136,-0.143325 0.09136,-0.227771 0,-0.176638 -0.140444,-0.320737 -0.312602,-0.320737 h -0.442475 c -0.416048,0 -0.755077,0.347853 -0.755077,0.774728 v 1.110961 l 2.999167,1.846178 0.123833,-0.08445 c 0.881175,-0.603514 1.407464,-1.61221 1.407464,-2.699154 0,-0.500475 -0.115527,-1.002499 -0.333744,-1.451067 l -0.48174,-0.987779 0.786791,-2.423351 c 0.01888,-0.05655 0.02869,-0.116209 0.02869,-0.175863 z"
id="path28"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 22.0111,44.531771 h -1.510155 v 3.098915 H 22.0111 c 0.83285,0 1.510155,-0.694932 1.510155,-1.549457 0,-0.854526 -0.677305,-1.549458 -1.510155,-1.549458 z"
id="path30"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 37.112648,32.136115 v 4.648371 h 10.571838 l -7.55e-4,-4.648371 z m 3.020309,3.098914 h -1.510155 v -1.549457 h 1.510155 z m 3.02031,0 h -1.510155 v -1.549457 h 1.510155 z m 3.020309,0 h -1.510155 v -1.549457 h 1.510155 z"
id="path32"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /><path
d="m 28.541764,40.138286 -0.617653,-1.031164 c -1.014069,-1.693556 -2.44041,-3.087293 -4.128763,-4.054929 -0.576879,0.118533 -1.17339,0.182836 -1.784248,0.182836 h -0.138934 c 0.08457,0.243265 0.138934,0.502024 0.138934,0.774728 v 6.972557 c 0.552717,0 1.063904,0.164243 1.510155,0.430749 v -2.301718 l 2.307516,2.36757 c 0.651632,0.669366 1.55395,1.052856 2.475899,1.052856 1.382547,0 2.638995,-0.838256 3.200773,-2.134377 l 1.624927,-3.75201 -2.585385,-1.591292 z"
id="path34"
style="fill:none;fill-opacity:1;stroke:#2d527c;stroke-width:0.76484;stroke-opacity:1" /></svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 907 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 50 50"
enable-background="new 0 0 66 66"
xml:space="preserve"
id="svg28"
sodipodi:docname="Accompagnement éducatif et cognitif.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs32" /><sodipodi:namedview
id="namedview30"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="2.8606061"
inkscape:cx="35.831567"
inkscape:cy="42.298728"
inkscape:window-width="1717"
inkscape:window-height="851"
inkscape:window-x="26"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg28" /><g
id="g6119"
transform="matrix(0.68341867,0,0,0.68341867,2.5522369,-2.4937062)"
style="stroke-width:1.4632319;stroke-dasharray:none"><path
d="m 24.749576,30.319367 c 4.8,0.4 10.5,-0.1 14,-3.5 1.3,-1.2 1.3,-3.2 0.1,-4.5 -1.2,-1.3 -3.2,-1.3 -4.5,-0.1 -2.6,2.4 -9,2 -12.5,1.3 2,1.7 3.1,4.2 2.9,6.8 z"
id="path2"
style="fill:none;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><path
d="m 48.849576,33.019367 h -11.4 v 1.1 c 1.3,0.4 2.3,1.4 2.7,2.8 0.7,2.2 -0.5,4.5 -2.7,5.2 v 2.3 h 11.4 z"
id="path4"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><path
d="m 23.349576,46.819367 -0.2,1.9 c -0.2,2 -1,3.7 -2.3,5.1 l 5,7.6 c 1.2,1.8 1.1,4.2 0.1,5.6 l 3.7,-0.2 c 3.2,-0.2 5.1,-3.8 3.3,-6.6 -8.1,-11.8 -7.8,-12.5 -9.6,-13.4 z"
id="path6"
style="fill:none;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><circle
cx="18.049578"
cy="14.919368"
r="6.5999999"
id="circle8"
style="fill:none;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><path
d="m 19.449576,53.619367 c 1.5,-1.2 2.5,-3 2.6,-5 l 0.6,-6.7 c -3.9,-1.3 -7.4,-3.6 -10,-6.7 -1.5,-1.8 -1.3,-4.4 0.5,-6 1.8,-1.5 4.4,-1.3 6,0.5 1.2,1.4 2.7,2.6 4.3,3.4 l 0.2,-2.7 c 0.4,-4.1 -2.6,-7.7 -6.7,-8 -4.1,-0.4 -7.6999997,2.6 -7.9999997,6.7 l -1.6,18.2 c -0.2,2 0.5,4 1.7,5.4 0.3,1.3 0.7,1.4 4.7999997,7.8 l -8.4999997,0.4 c -2.3,0.1 -4.1,2.1 -4,4.4 0.1,2.4 2.2,4.1 4.4,4 l 15.7999997,-0.9 c 3.2,-0.2 5.1,-3.8 3.3,-6.5 z"
id="path10"
style="fill:none;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><path
d="m 39.249576,37.219367 c -0.5,-1.7 -2.3,-2.6 -4,-2.1 -6.2,1.9 -13,0 -16.9,-4.7 -1.1,-1.3 -3.1,-1.5 -4.5,-0.4 -1.3,1.1 -1.5,3.1 -0.4,4.5 5.6,6.6 15.1,9.3 23.6,6.7 1.7,-0.5 2.7,-2.3 2.2,-4 z"
id="path12"
style="fill:none;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><rect
x="38.449574"
y="59.11937"
width="11.4"
height="11.4"
id="rect14"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><rect
x="53.949574"
y="58.419369"
width="11.4"
height="11.4"
id="rect16"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><rect
x="45.449574"
y="46.019367"
width="11.4"
height="11.4"
id="rect18"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /><rect
x="43.949574"
y="20.019367"
width="11.4"
height="11.4"
id="rect20"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-opacity:1;stroke-width:1.4632319;stroke-dasharray:none" /></g></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 50 50"
x="0px"
y="0px"
version="1.1"
id="svg26063"
sodipodi:docname="Passation dévaluations.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs26067" />
<sodipodi:namedview
id="namedview26065"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
showguides="true"
inkscape:zoom="5.9"
inkscape:cx="30.762712"
inkscape:cy="40.169492"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg26063" />
<title
id="title26053">1</title>
<path
d="M 36.835174,46.740721 H 6.0317782 V 3.2535737 H 36.835174 Z M 19.621512,10.501432 c 0,-0.500361 0.405621,-0.9059826 0.905982,-0.9059826 h 4.529911 c 1.207976,0 1.207976,1.8119646 0,1.8119646 h -4.529911 c -0.500361,0 -0.905982,-0.405622 -0.905982,-0.905982 z m 0,3.623929 c 0,-0.50036 0.405621,-0.905982 0.905982,-0.905982 h 11.777769 c 1.207976,0 1.207976,1.811964 0,1.811964 H 20.527494 c -0.500361,0 -0.905982,-0.405622 -0.905982,-0.905982 z M 10.56169,28.621077 h 5.435893 c 0.50036,0 0.905982,-0.405622 0.905982,-0.905983 v -5.435893 c 0,-0.50036 -0.405622,-0.905982 -0.905982,-0.905982 H 10.56169 c -0.500361,0 -0.9059828,0.405622 -0.9059828,0.905982 v 5.435893 c 0,0.500361 0.4056218,0.905983 0.9059828,0.905983 z m 9.059822,7.247858 c 0,-0.500361 0.405621,-0.905983 0.905982,-0.905983 h 4.529911 c 1.207976,0 1.207976,1.811965 0,1.811965 h -4.529911 c -0.500361,0 -0.905982,-0.405622 -0.905982,-0.905982 z m 0,3.623929 c 0,-0.500361 0.405621,-0.905983 0.905982,-0.905983 h 11.777769 c 1.207976,0 1.207976,1.811965 0,1.811965 H 20.527494 c -0.500361,0 -0.905982,-0.405622 -0.905982,-0.905982 z m 24.46152,1.811964 h -1.811965 v -1.811964 h 1.811965 z"
id="path26055"
style="fill:none;fill-opacity:1;stroke:#2d527c;stroke-width:0.905982;stroke-opacity:1"
sodipodi:nodetypes="cccccsssssssssssssssssssssssssssssssssccccc" />
<path
d="m 10.533045,15.915479 h 5.435893 c 0.500361,0 0.905982,-0.405622 0.905982,-0.905983 V 9.5736025 c 0,-0.5003604 -0.405621,-0.9059822 -0.905982,-0.9059822 h -5.435893 c -0.50036,0 -0.9059823,0.4056218 -0.9059823,0.9059822 v 5.4358935 c 0,0.500361 0.4056223,0.905983 0.9059823,0.905983 z"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.905982;stroke-opacity:1"
id="path27647" />
<path
d="m 10.583306,41.223903 h 5.435893 c 0.500361,0 0.905983,-0.405622 0.905983,-0.905982 v -5.435894 c 0,-0.50036 -0.405622,-0.905982 -0.905983,-0.905982 h -5.435893 c -0.50036,0 -0.9059821,0.405622 -0.9059821,0.905982 v 5.435894 c 0,0.50036 0.4056221,0.905982 0.9059821,0.905982 z"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.905982;stroke-opacity:1"
id="path27647-6" />
<path
d="M 44.139235,37.686986 H 42.327271 V 21.592937 l 0.905982,-1.811965 0.905982,1.811965 z"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.905982;stroke-opacity:1"
id="path28468" />
<path
d="m 19.660569,23.124423 c 0,-0.500361 0.405622,-0.905983 0.905983,-0.905983 h 4.529911 c 1.207976,0 1.207976,1.811965 0,1.811965 h -4.529911 c -0.500361,0 -0.905983,-0.405622 -0.905983,-0.905982 z m 0,3.623929 c 0,-0.500361 0.405622,-0.905983 0.905983,-0.905983 h 11.777769 c 1.207976,0 1.207976,1.811965 0,1.811965 H 20.566552 c -0.500361,0 -0.905983,-0.405622 -0.905983,-0.905982 z"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.905982;stroke-opacity:1"
id="path28510" />
<metadata
id="metadata30122">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 50 50"
xml:space="preserve"
id="svg62"
sodipodi:docname="Job coaching.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs66" /><sodipodi:namedview
id="namedview64"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="16"
inkscape:cx="13.125"
inkscape:cy="20.3125"
inkscape:window-width="1920"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg62" /><path
d="m 39.915932,3.7477026 c 12.384995,1.9413576 9.052342,16.5573704 0,16.8334424 -4.64085,0 -8.41672,-3.775871 -8.41672,-8.416721 0,-4.6408503 3.77587,-8.4167214 8.41672,-8.4167214 z"
id="path38"
style="fill:none;stroke:#2d527c;stroke-width:1;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="ccsc" /><path
d="m 44.275555,16.712497 c 0.614626,0 1.114462,-0.499836 1.114462,-1.114462 v -5.572313 c 0,-0.614626 -0.499836,-1.1144622 -1.114462,-1.1144622 H 42.603861 V 7.7967973 c 0,-0.6146261 -0.499836,-1.1144623 -1.114462,-1.1144623 H 38.14601 c -0.614626,0 -1.114462,0.4998362 -1.114462,1.1144623 v 1.1144625 h -1.671693 c -0.614627,0 -1.114463,0.4998362 -1.114463,1.1144622 v 5.572313 c 0,0.614626 0.499836,1.114462 1.114463,1.114462 z"
id="path40"
style="fill:#d2ecfd;fill-opacity:1;stroke:#2d527c;stroke-width:0.860668;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="sssscsssscsssss" /><path
d="m 7.2319453,22.208074 h 5.7426997 c 0.634321,0 1.14854,-0.514219 1.14854,-1.14854 v -5.7427 c 0,-0.634321 -0.514219,-1.14854 -1.14854,-1.14854 H 7.2319453 c -0.6343214,0 -1.1485399,0.514219 -1.1485399,1.14854 v 5.7427 c 0,0.634321 0.5142185,1.14854 1.1485399,1.14854 z"
id="path2357"
style="fill:#d2ecfd;stroke:#2d527c;stroke-width:1;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 18.717345,22.208074 h 5.7427 c 0.634321,0 1.14854,-0.514219 1.14854,-1.14854 v -5.7427 c 0,-0.634321 -0.514219,-1.14854 -1.14854,-1.14854 h -5.7427 c -0.634322,0 -1.14854,0.514219 -1.14854,1.14854 v 5.7427 c 0,0.634321 0.514218,1.14854 1.14854,1.14854 z"
id="path2359"
style="fill:none;stroke:#2d527c;stroke-width:1;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 12.974645,32.544934 c 0.634321,0 1.14854,-0.514219 1.14854,-1.14854 v -5.7427 c 0,-0.634322 -0.514219,-1.14854 -1.14854,-1.14854 H 7.2319453 c -0.6343214,0 -1.1485399,0.514218 -1.1485399,1.14854 v 5.7427 c 0,0.634321 0.5142185,1.14854 1.1485399,1.14854 z"
id="path2361"
style="fill:none;stroke:#2d527c;stroke-width:1;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 18.717345,32.544934 h 5.7427 c 0.634321,0 1.14854,-0.514219 1.14854,-1.14854 v -5.7427 c 0,-0.634322 -0.514219,-1.14854 -1.14854,-1.14854 h -5.7427 c -0.634322,0 -1.14854,0.514218 -1.14854,1.14854 v 5.7427 c 0,0.634321 0.514218,1.14854 1.14854,1.14854 z"
id="path2363"
style="fill:#d2ecfd;stroke:#2d527c;stroke-width:1;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 39.391064,24.505154 h -4.59416 c -0.634321,0 -1.14854,0.514218 -1.14854,1.14854 v 5.7427 c 0,0.634321 0.514219,1.14854 1.14854,1.14854 h 4.59416 c 0.634322,0 1.14854,-0.514219 1.14854,-1.14854 v -5.7427 c 0,-0.634322 -0.514218,-1.14854 -1.14854,-1.14854 z"
id="path2365"
style="fill:#d2ecfd;stroke:#2d527c;stroke-width:1;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 39.391064,34.842014 h -4.59416 c -0.634321,0 -1.14854,0.514218 -1.14854,1.14854 v 5.742699 c 0,0.634322 0.514219,1.14854 1.14854,1.14854 h 4.59416 c 0.634322,0 1.14854,-0.514218 1.14854,-1.14854 v -5.742699 c 0,-0.634322 -0.514218,-1.14854 -1.14854,-1.14854 z"
id="path2367"
style="fill:none;stroke:#2d527c;stroke-width:1;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="sssssssss" /><path
d="m 3.7239712,8.0611248 25.2762438,0.091631 0.05399,39.3231972 h -6.89124 v -8.03978 c 0,-1.902963 -1.542657,-3.445619 -3.44562,-3.445619 h -5.7427 c -1.902963,0 -3.4456193,1.542656 -3.4456193,3.445619 v 8.03978 H 3.7863289 Z M 31.351284,47.475953 31.227986,22.685914 43.099785,22.715634 42.836684,47.47595 Z"
id="path2369"
style="fill:none;stroke:#2d527c;stroke-width:1;stroke-opacity:1;stroke-dasharray:none"
sodipodi:nodetypes="ccccsssscccccccc" /><path
d="m 38.566449,8.8877998 h 2.503507 c 0.27653,0 0.500702,-0.061857 0.500702,-0.1381629 V 8.0588227 c 0,-0.076305 -0.224172,-0.1381629 -0.500702,-0.1381629 h -2.503507 c -0.276529,0 -0.500701,0.061857 -0.500701,0.1381629 v 0.6908144 c 0,0.076306 0.224172,0.1381629 0.500701,0.1381627 z"
id="path2359-3"
style="fill:#ffffff;fill-opacity:1;stroke:#2d527c;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="sssssssss" /></svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 50 50"
enable-background="new 0 0 100 100"
xml:space="preserve"
id="svg3808"
sodipodi:docname="Guidance parentale.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs3812" /><sodipodi:namedview
id="namedview3810"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="3.776"
inkscape:cx="-33.501059"
inkscape:cy="28.336864"
inkscape:window-width="1717"
inkscape:window-height="799"
inkscape:window-x="26"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3808" /><circle
fill="none"
stroke="#000000"
stroke-width="1.05416"
stroke-miterlimit="10"
cx="9.5915442"
cy="15.212448"
id="circle3796"
r="5.0894637"
style="stroke:#2d527c;stroke-opacity:1;stroke-width:1;stroke-dasharray:none" /><circle
stroke="#000000"
stroke-width="1.05416"
stroke-miterlimit="10"
cx="41.380665"
cy="15.212976"
id="circle3798"
r="5.0894637"
style="stroke:#2d527c;stroke-opacity:1;fill:#d2ecfd;fill-opacity:1;stroke-width:1;stroke-dasharray:none" /><path
fill="none"
stroke="#000000"
stroke-width="1.05416"
stroke-miterlimit="10"
d="M 15.651887,40.598628 H 3.546489 c 0,0 0.014231,-12.209758 0,-13.616002 -0.019502,-1.923834 2.3465507,-4.240342 3.3379837,-4.304645 1.581234,-0.102253 4.1728763,-0.06747 5.0072403,-0.06747 0.834364,0 3.866116,1.867437 5.464216,4.63565 1.344049,2.328103 4.270385,3.976275 5.161674,4.277764 -0.954011,1.405189 -0.831202,3.276843 -0.347871,4.06746 -1.932795,-0.175517 -4.787449,-2.898929 -6.451961,-4.37422 -0.0047,1.299774 -0.06588,9.381459 -0.06588,9.381459 z"
id="path3800"
style="stroke:#2d527c;stroke-opacity:1;stroke-width:1;stroke-dasharray:none" /><path
stroke="#000000"
stroke-width="1.05416"
stroke-miterlimit="10"
d="M 47.363526,40.651336 H 35.259183 v -9.0494 c -3.843452,2.979571 -5.205948,3.16563 -7.93832,4.160226 -2.669649,0.971931 -4.33785,-3.200944 -1.549608,-3.79338 5.842658,0.109106 9.223862,-8.412162 12.825912,-9.364065 1.021477,-0.269864 4.611932,-0.06536 4.919218,-0.05324 1.361969,0.05324 4.041106,1.883777 3.847141,4.343122 -0.04902,0.619843 0,13.756732 0,13.756732 z"
id="path3802"
style="stroke:#2d527c;stroke-opacity:1;fill:#d2ecfd;fill-opacity:1;stroke-width:1;stroke-dasharray:none" /></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 50 50"
xml:space="preserve"
id="svg20"
sodipodi:docname="Habiletés sociales.svg"
width="50"
height="50"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs24" /><sodipodi:namedview
id="namedview22"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="5.3400704"
inkscape:cx="53.650978"
inkscape:cy="41.010695"
inkscape:window-width="1717"
inkscape:window-height="539"
inkscape:window-x="26"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg20" /><g
id="g23458"
style="stroke:#2d527c;stroke-opacity:1"><path
d="m 5.8121624,19.769033 c 0,-2.150045 1.7430825,-3.893127 3.8931273,-3.893127 2.1500453,0 3.8931273,1.743082 3.8931273,3.893127 0,2.150045 -1.743082,3.893128 -3.8931273,3.893128 -2.1500448,0 -3.8931273,-1.743083 -3.8931273,-3.893128 z"
id="path2"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:#d2ecfd;fill-opacity:1" /><path
d="m 47.857941,19.769033 c 0,2.150045 -1.743084,3.893128 -3.893127,3.893128 -2.150045,0 -3.893129,-1.743083 -3.893129,-3.893128 0,-2.150045 1.743084,-3.893127 3.893129,-3.893127 2.150043,0 3.893127,1.743082 3.893127,3.893127 z"
id="path4"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:none" /><path
d="m 44.743439,41.570547 v 4.671754 c 0,0.429801 -0.348824,0.778625 -0.778625,0.778625 h -7.786257 c -0.429801,0 -0.778625,-0.348824 -0.778625,-0.778625 v -4.671754 c 0,-0.86012 0.69713,-1.55725 1.557252,-1.55725 h 6.229003 c 0.860122,0 1.557252,0.69713 1.557252,1.55725 z"
id="path6"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:none" /><path
d="m 39.848999,37.67742 h -6.244058 l -1.340793,8.042683 c -0.14171,0.849221 -0.94577,1.420732 -1.792396,1.279541 C 29.624089,46.858454 29.0505,46.05595 29.19221,45.207248 l 1.557252,-9.343507 c 0.125098,-0.750594 0.774992,-1.300823 1.535968,-1.300823 h 4.325005 l 1.975114,-6.913157 c 0.447449,-1.566075 1.981861,-2.671723 3.585311,-2.383112 1.843785,0.332213 2.954625,2.166654 2.45267,3.922715 l -1.779937,6.229004 c -0.382046,1.33716 -1.60397,2.259052 -2.994594,2.259052 z"
id="path8"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:none" /><path
d="m 13.598937,41.570547 v 4.671754 c 0,0.429801 -0.348825,0.778625 -0.778626,0.778625 H 5.0340561 c -0.4298014,0 -0.7786257,-0.348824 -0.7786257,-0.778625 v -4.671754 c 0,-0.86012 0.6971295,-1.55725 1.5572511,-1.55725 h 6.2290035 c 0.859603,0 1.557252,0.69713 1.557252,1.55725 z"
id="path10"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:none;fill-opacity:1" /><path
d="m 18.249408,35.86426 1.55725,9.343507 c 0.141191,0.848702 -0.431877,1.650687 -1.279541,1.792396 -0.846106,0.141191 -1.650686,-0.43032 -1.792396,-1.279541 L 15.393928,37.67742 H 9.1498706 c -1.3906256,0 -2.6125482,-0.921892 -2.9945939,-2.259052 L 4.3758579,29.189364 c -0.501954,-1.756061 0.608366,-3.590502 2.4521516,-3.922715 1.60293,-0.288611 3.1378604,0.816518 3.5853105,2.383112 l 0.148977,0.521679 4.11322,-1.333006 c 0.815999,-0.26629 1.696365,0.182717 1.961097,1.001313 0.265253,0.818075 -0.183236,1.696365 -1.001312,1.961097 l -4.217036,1.366747 0.970167,3.395327 h 4.325005 c 0.760978,0 1.410351,0.550229 1.53597,1.301342 z"
id="path12"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:#d2ecfd;fill-opacity:1" /><path
d="M 35.399932,14.318654 V 4.9751486 c 0,-0.8601217 -0.697129,-1.5572511 -1.55725,-1.5572511 H 18.270171 c -0.860122,0 -1.557252,0.6971294 -1.557252,1.5572511 V 19.41969 c 0,0.416305 0.502993,0.624457 0.797314,0.330137 l 3.87444,-3.873921 h 12.458009 c 0.860121,0 1.55725,-0.69713 1.55725,-1.557252 z M 21.384673,11.204152 c -0.860122,0 -1.557252,-0.697129 -1.557252,-1.5572501 0,-0.8601218 0.69713,-1.5572517 1.557252,-1.5572517 0.860122,0 1.557251,0.6971299 1.557251,1.5572517 0,0.8601211 -0.697129,1.5572501 -1.557251,1.5572501 z m 4.671753,0 c -0.860122,0 -1.557251,-0.697129 -1.557251,-1.5572501 0,-0.8601218 0.697129,-1.5572517 1.557251,-1.5572517 0.860121,0 1.557251,0.6971299 1.557251,1.5572517 0,0.8601211 -0.69713,1.5572501 -1.557251,1.5572501 z m 4.671754,0 c -0.860122,0 -1.557252,-0.697129 -1.557252,-1.5572501 0,-0.8601218 0.69713,-1.5572517 1.557252,-1.5572517 0.860121,0 1.55725,0.6971299 1.55725,1.5572517 0,0.8601211 -0.697129,1.5572501 -1.55725,1.5572501 z"
id="path14"
style="stroke-width:0.519084;stroke:#2d527c;stroke-opacity:1;fill:#d2ecfd;fill-opacity:1" /></g></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -0,0 +1,161 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
width="100"
height="100"
style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
id="svg26"
sodipodi:docname="logo.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="C:\Users\cpinte\Downloads\v1.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="https://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#9e9e9e"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1131"
id="namedview28"
showgrid="false"
inkscape:zoom="3.2833082"
inkscape:cx="200.10305"
inkscape:cy="118.17349"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg26"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#9e9e9e" />
<g
id="g4"
style="fill:none;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(0.36660232,0.44188394,-0.44188394,0.36660232,378.21795,-85.735153)">
<path
style="opacity:1;fill:none;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
fill="#fefefe"
d="m -0.5,-0.5 c 307.333,0 614.667,0 922,0 0,296 0,592 0,888 -307.333,0 -614.667,0 -922,0 0,-296 0,-592 0,-888 z"
id="path2" />
</g>
<g
id="g16"
style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,306.17176,-163.63856)">
<path
style="opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
fill="#facdc4"
d="m 774.5,201.5 c 0.05,5.889 -0.616,11.556 -2,17 -0.05,-5.889 0.616,-11.556 2,-17 z"
id="path14" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:30.5234px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.763085;stroke-miterlimit:4;stroke-dasharray:none"
x="-134.23529"
y="-159.94829"
id="text36"
transform="rotate(50.319716)"><tspan
sodipodi:role="line"
id="tspan34"
x="-134.23529"
y="-159.94829"
style="stroke-width:0.763085" /></text>
<g
id="g2023"
transform="matrix(0.12757349,0,0,0.12757349,-13.226862,-5.8209353)">
<g
id="g983"
style="stroke:#e6e6e6;stroke-width:10.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(137.18156,112.42639)">
<g
id="g8"
style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path
style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
fill="#cad302"
d="m 289.5,40.5 c 23.337,0.3413 36.67,12.008 40,35 -0.78,12.6829 -3.28,25.016 -7.5,37 -2.744,19.08 5.423,29.413 24.5,31 37.401,-3.215 74.401,-8.881 111,-17 7.6,33.937 12.933,68.27 16,103 2.172,9.368 -1.328,14.701 -10.5,16 -9.512,-2.086 -19.012,-4.253 -28.5,-6.5 -24.723,-5.215 -43.889,2.618 -57.5,23.5 -10.912,25.184 -5.745,46.35 15.5,63.5 11.745,7.089 24.412,9.422 38,7 10.827,-1.874 21.494,-4.374 32,-7.5 7.101,0.601 11.101,4.434 12,11.5 -3.666,36.502 -9.333,72.669 -17,108.5 -37.089,-8.431 -74.589,-14.431 -112.5,-18 -14.592,1.425 -22.758,9.425 -24.5,24 3.305,11.553 6.138,23.219 8.5,35 1.455,30.545 -13.045,45.045 -43.5,43.5 -20.426,-7.341 -29.259,-21.841 -26.5,-43.5 2.505,-11.857 5.005,-23.691 7.5,-35.5 -2.027,-14.689 -10.527,-22.523 -25.5,-23.5 -37.29,3.354 -74.124,9.354 -110.5,18 -7.76,-35.815 -13.426,-71.981 -17,-108.5 0.432,-6.932 4.099,-10.765 11,-11.5 10.215,2.97 20.548,5.47 31,7.5 29.798,4.367 49.631,-7.466 59.5,-35.5 4.752,-26.101 -4.748,-44.934 -28.5,-56.5 -9.434,-3.111 -19.101,-4.111 -29,-3 -10.954,2.098 -21.787,4.598 -32.5,7.5 -7.142,-0.475 -10.975,-4.308 -11.5,-11.5 2.892,-35.579 8.392,-70.745 16.5,-105.5 0.839,-1.124 2.006,-1.791 3.5,-2 37.117,9.409 74.784,14.909 113,16.5 12.993,-2.49 19.659,-10.323 20,-23.5 -2.487,-11.957 -4.987,-23.9571 -7.5,-36 -2.042,-23.1087 8.125,-37.4421 30.5,-43 z"
id="path6" />
</g>
<g
id="g12"
style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path
style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
fill="#ee6a5e"
d="m 774.5,201.5 c -1.384,5.444 -2.05,11.111 -2,17 -1.751,9.481 -1.251,18.814 1.5,28 6.42,10.291 15.586,14.124 27.5,11.5 15.452,-6.576 31.452,-8.576 48,-6 20.184,8.868 27.684,24.035 22.5,45.5 -6.46,15.821 -18.293,23.487 -35.5,23 -12.955,-0.891 -25.621,-3.391 -38,-7.5 -17.108,-0.724 -26.108,7.442 -27,24.5 2.805,37.444 8.472,74.444 17,111 -34.852,8.607 -70.185,14.273 -106,17 -8.227,0.608 -12.56,-3.225 -13,-11.5 3.625,-11.909 6.125,-24.075 7.5,-36.5 1.632,-26.258 -9.868,-43.758 -34.5,-52.5 -32.111,-5.534 -52.611,7.299 -61.5,38.5 -0.361,17.669 2.473,34.835 8.5,51.5 -1.51,7.598 -6.177,11.098 -14,10.5 -35.693,-2.719 -70.86,-8.386 -105.5,-17 7.046,-32.277 12.379,-64.944 16,-98 0.667,-7.333 0.667,-14.667 0,-22 -4.671,-9.923 -12.505,-15.256 -23.5,-16 -10.437,3.108 -21.104,5.608 -32,7.5 -23.354,3.922 -38.521,-5.245 -45.5,-27.5 -2.136,-20.86 6.698,-34.693 26.5,-41.5 4.667,-0.667 9.333,-0.667 14,0 12.52,2.422 25.02,4.922 37.5,7.5 12.094,-0.435 19.76,-6.435 23,-18 0.667,-7.667 0.667,-15.333 0,-23 -3.561,-32.037 -9.061,-63.704 -16.5,-95 34.864,-8.442 70.198,-14.109 106,-17 7.372,-0.13 12.039,3.37 14,10.5 -4.547,13.817 -7.547,27.983 -9,42.5 2.155,30.321 18.322,46.988 48.5,50 34.166,-4.174 50.166,-23.508 48,-58 -1.872,-11.487 -4.372,-22.82 -7.5,-34 0.735,-6.902 4.569,-10.569 11.5,-11 36.192,3.48 72.025,9.146 107.5,17 -6.211,26.057 -10.878,52.39 -14,79 z"
id="path10" />
</g>
<g
id="g20"
style="fill:#d81bff;fill-opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path
style="opacity:1;fill:#d81bff;fill-opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
fill="#03b4e5"
d="m 623.5,375.5 c 20.676,-0.921 34.176,8.412 40.5,28 0.667,4.667 0.667,9.333 0,14 -2.031,12.453 -4.531,24.787 -7.5,37 1.152,15.486 9.486,23.486 25,24 37.443,-2.971 74.443,-8.638 111,-17 8.302,35.051 13.969,70.551 17,106.5 -0.025,7.518 -3.691,11.685 -11,12.5 -12.173,-3.223 -24.507,-5.723 -37,-7.5 -26.748,-1.546 -44.581,10.287 -53.5,35.5 -4.758,25.314 4.076,44.147 26.5,56.5 6.382,2.762 13.048,4.262 20,4.5 14.99,-1.498 29.656,-4.498 44,-9 6.872,0.769 10.539,4.602 11,11.5 -3.019,36.593 -8.686,72.759 -17,108.5 -36.558,-8.37 -73.558,-14.037 -111,-17 -18.079,1.248 -26.246,10.915 -24.5,29 4.003,11.511 6.503,23.344 7.5,35.5 -2.145,27.14 -16.811,39.474 -44,37 -20.098,-7.012 -28.932,-21.179 -26.5,-42.5 2.569,-12.014 5.069,-24.014 7.5,-36 -0.365,-10.888 -5.699,-18.388 -16,-22.5 -13.399,-0.727 -26.732,-0.06 -40,2 -26.881,3.743 -53.548,8.577 -80,14.5 -6.783,-31.032 -11.95,-62.366 -15.5,-94 -0.667,-6.667 -0.667,-13.333 0,-20 2.345,-3.684 5.678,-5.684 10,-6 13.799,4.726 27.965,7.726 42.5,9 29.512,-2.512 45.846,-18.512 49,-48 -0.575,-21.404 -10.575,-36.571 -30,-45.5 -12.529,-4.289 -25.196,-4.622 -38,-1 -7.646,1.995 -15.313,3.828 -23,5.5 -9.523,-0.995 -13.19,-6.328 -11,-16 2.751,-34.753 8.085,-69.086 16,-103 36.367,8.533 73.2,14.2 110.5,17 18.867,-1.201 27.2,-11.201 25,-30 -3.296,-10.103 -5.629,-20.436 -7,-31 -1.279,-21.877 8.554,-35.877 29.5,-42 z"
id="path18" />
</g>
<g
id="g24"
style="stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.48723221,0.58728511,-0.58728511,0.48723221,384.1419,-168.51169)">
<path
style="opacity:1;stroke:#e6e6e6;stroke-width:13.891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
fill="#fed902"
d="m 235.5,440.5 c 9.874,-2.071 16.207,1.596 19,11 -6.875,17.805 -9.375,36.138 -7.5,55 8.639,26.245 26.806,38.412 54.5,36.5 26.176,-6.329 39.843,-22.995 41,-50 -1.214,-14.071 -4.214,-27.737 -9,-41 0.849,-6.849 4.683,-10.683 11.5,-11.5 36.552,3.278 72.719,8.944 108.5,17 -8.609,36.201 -14.275,72.868 -17,110 -0.922,12.909 4.745,21.409 17,25.5 2.167,0.167 4.333,0.333 6.5,0.5 11.403,-2.724 22.903,-5.224 34.5,-7.5 21.696,-2.744 36.196,6.089 43.5,26.5 3.232,19.349 -3.935,33.182 -21.5,41.5 -6.858,2.155 -13.858,2.822 -21,2 -12.014,-2.569 -24.014,-5.069 -36,-7.5 -15.355,0.857 -23.022,9.024 -23,24.5 2.765,37.621 8.431,74.788 17,111.5 -34.606,7.823 -69.606,13.156 -105,16 -8.717,1.272 -13.717,-2.395 -15,-11 3.785,-11.421 6.618,-23.088 8.5,-35 1.851,-27.14 -9.982,-45.307 -35.5,-54.5 -32.046,-4.944 -52.213,8.222 -60.5,39.5 -0.667,4.667 -0.667,9.333 0,14 2.056,12.116 4.556,24.116 7.5,36 -0.847,9.364 -6.013,13.031 -15.5,11 -34.927,-2.68 -69.427,-8.013 -103.5,-16 8.486,-37.045 14.152,-74.545 17,-112.5 -0.963,-14.632 -8.797,-22.799 -23.5,-24.5 -12.03,3.382 -24.197,6.216 -36.5,8.5 -25.3094,1.528 -39.6428,-10.305 -43,-35.5 3.8366,-24.676 18.1699,-36.176 43,-34.5 12.04,2.405 24.04,4.905 36,7.5 15.964,-1.298 23.964,-9.965 24,-26 -2.725,-37.142 -8.392,-73.808 -17,-110 33.46,-7.629 67.126,-13.296 101,-17 z"
id="path22" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:572.454px;line-height:1.25;font-family:sans-serif;clip-rule:evenodd;fill:#03b4e5;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
x="150.47546"
y="573.55658"
id="text36-1"
transform="rotate(6.4525798)"><tspan
sodipodi:role="line"
id="tspan34-9"
x="150.47546"
y="573.55658"
style="font-size:572.454px;fill:#03b4e5;fill-opacity:1;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">(</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:572.454px;line-height:1.25;font-family:sans-serif;clip-rule:evenodd;fill:#03b4e5;fill-opacity:1;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
x="-934.48035"
y="-138.46599"
id="text36-1-4"
transform="rotate(-167.76694)"><tspan
sodipodi:role="line"
id="tspan34-9-5"
x="-934.48035"
y="-138.46599"
style="font-size:572.454px;fill:#03b4e5;fill-opacity:1;stroke:#e6e6e6;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">(</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="125"
height="20"
viewBox="0 0 135 21"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="marker.svg"
inkscape:version="1.0.2-2 (e86c870879, 2021-01-15)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="https://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview6"
showgrid="false"
inkscape:zoom="10.424"
inkscape:cx="62.5"
inkscape:cy="10"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:document-rotation="0" />
<path
d="M8 13.3507C23.614 12.0121 30.8232 10.3647 46.5 9.31385C73.1353 7.52845 100.096 8.08065 126.851 8.08065"
stroke="#F6E05E"
stroke-width="15"
stroke-linecap="round"
stroke-linejoin="round"
id="path2"
style="stroke:#2e8bc0;stroke-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View file

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 25 25"
enable-background="new 0 0 100 100"
xml:space="preserve"
id="svg22"
sodipodi:docname="certificate.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs26" /><sodipodi:namedview
id="namedview24"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="6.512"
inkscape:cx="50.061425"
inkscape:cy="22.496929"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg22" /><g
id="g202"
transform="matrix(0.27880004,0,0,0.27880004,-1.4401082,-1.4400022)"><g
id="g191"><g
id="g6"><path
d="m 40.62,14.401 c 0.923,-1.024 2.244,-1.612 3.624,-1.612 0.579,0 1.148,0.102 1.692,0.303 l 4.065,1.505 4.065,-1.505 c 0.543,-0.201 1.112,-0.303 1.69,-0.303 1.379,0 2.701,0.588 3.624,1.612 l 2.899,3.222 2.442,0.316 V 5.165 H 35.279 v 12.774 l 2.441,-0.316 z"
id="path2" /><path
d="m 61.18,67.196 c -0.181,0 -0.366,-0.01 -0.548,-0.031 l -4.309,-0.487 -3.585,2.434 c -0.812,0.551 -1.758,0.841 -2.737,0.841 -0.98,0 -1.927,-0.29 -2.737,-0.842 l -3.587,-2.433 -4.309,0.487 c -0.18,0.021 -0.362,0.03 -0.542,0.03 -1.364,0 -2.638,-0.564 -3.546,-1.527 v 29.167 l 14.722,-7.257 14.722,7.257 V 65.67 c -0.909,0.961 -2.182,1.526 -3.544,1.526 z"
id="path4" /></g><g
id="g10"><path
d="m 74.872,42.246 -2.045,-3.97 1.035,-4.345 C 74.168,32.648 73.66,31.308 72.58,30.55 L 68.925,27.984 67.822,23.658 C 67.496,22.38 66.424,21.429 65.115,21.26 L 60.686,20.686 57.7,17.367 c -0.884,-0.98 -2.275,-1.322 -3.513,-0.864 L 50,18.052 45.812,16.503 c -1.238,-0.458 -2.629,-0.116 -3.511,0.864 l -2.988,3.318 -4.428,0.574 c -1.308,0.169 -2.381,1.12 -2.707,2.398 l -1.104,4.326 -3.654,2.566 c -1.08,0.758 -1.588,2.098 -1.283,3.381 l 1.034,4.345 -2.043,3.97 c -0.604,1.173 -0.431,2.596 0.436,3.591 l 2.934,3.365 0.036,4.466 c 0.011,1.318 0.825,2.498 2.054,2.976 l 4.163,1.616 2.107,3.938 c 0.622,1.163 1.891,1.826 3.202,1.681 l 4.437,-0.503 3.695,2.508 c 0.545,0.369 1.177,0.555 1.809,0.555 0.631,0 1.263,-0.186 1.808,-0.555 l 3.694,-2.508 4.438,0.503 c 1.308,0.148 2.58,-0.518 3.202,-1.681 l 2.106,-3.938 4.163,-1.616 c 1.229,-0.478 2.043,-1.657 2.055,-2.976 l 0.035,-4.466 2.934,-3.365 c 0.866,-0.994 1.04,-2.417 0.436,-3.59 z M 50,60.944 c -10.811,0 -19.575,-8.764 -19.575,-19.574 0,-10.81 8.764,-19.575 19.575,-19.575 10.811,0 19.575,8.765 19.575,19.575 0,10.81 -8.763,19.574 -19.575,19.574 z"
id="path8" /></g></g><g
id="g16"><path
d="m 40.585,31.955 c 4.272,-4.272 10.722,-5.031 15.771,-2.285 l 2.275,-2.274 C 52.297,23.477 43.881,24.261 38.386,29.755 32.891,35.249 32.107,43.667 36.026,50 l 2.273,-2.273 c -2.745,-5.05 -1.986,-11.5 2.286,-15.772 z"
id="path12" /><path
d="M 61.615,52.984 C 67.109,47.49 67.892,39.072 63.973,32.739 L 61.7,35.013 c 2.746,5.051 1.986,11.501 -2.284,15.773 -4.271,4.271 -10.722,5.03 -15.772,2.284 l -2.274,2.273 c 6.333,3.921 14.75,3.136 20.245,-2.359 z"
id="path14" /></g></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

41
images/logo/degree.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

43
images/logo/facebook.svg Normal file
View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
viewBox="-10 0 25 25"
id="svg6"
sodipodi:docname="facebook.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="15.272388"
inkscape:cx="-17.089665"
inkscape:cy="9.1341315"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="g4" />
<g
transform="matrix(0.04882261,0,0,-0.04882812,-5.31292,21.874998)"
id="g4">
<path
fill="currentColor"
d="m 279.04096,160 14,93 h -89 v 60 q 0,20 12,34 11,15 41,16 h 40 v 79 q -1,0 -23,3 -21,3 -49,3 -55,0 -88,-32 -32,-32 -33,-93 V 253 H 23.040964 V 160 H 104.04096 V -64 h 100 v 224 z"
id="path2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

53
images/logo/insta.svg Normal file
View file

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
viewBox="-10 0 468 512"
id="svg4"
sodipodi:docname="insta.svg"
inkscape:version="1.0.2-2 (e86c870879, 2021-01-15)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="https://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview6"
showgrid="false"
inkscape:zoom="1.6601562"
inkscape:cx="234"
inkscape:cy="256"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
fill="currentColor"
d="M224 141q-49 1 -81 34v0q-33 32 -34 81q1 49 34 81q32 33 81 34q49 -1 81 -34q33 -32 34 -81q-1 -49 -34 -81q-32 -33 -81 -34v0zM224 331q-32 -1 -53 -22v0q-21 -21 -22 -53q1 -32 22 -53t53 -22q32 1 53 22t22 53q-1 32 -22 53t-53 22v0zM371 136q-3 25 -27 27 q-25 -2 -27 -27q0 -11 8 -19q7 -7 19 -7q11 0 19 7q7 8 8 19v0zM447 164q0 -55 -37 -94q-39 -37 -93 -37q-20 -1 -57 -1h-72q-37 0 -56 1q-54 0 -94 37q-37 39 -36 93q-2 20 -2 57v72t2 56q-1 55 36 94q39 37 94 36q19 1 56 2h72q37 -1 57 -2q54 1 93 -36q37 -39 37 -94 q1 -20 1 -56v-72q0 -37 -1 -57v1zM399 388q-13 30 -43 43q-20 7 -54 8t-62 1h-16h-16q-28 0 -62 -1q-33 -1 -54 -8q-30 -13 -43 -43q-7 -21 -8 -54q-1 -34 -1 -62v-16v-16q0 -28 1 -62t8 -54q13 -30 43 -43q21 -7 54 -8q34 -2 62 -1h16h16q28 0 62 1t54 8q30 13 43 43 q7 20 8 54q2 34 1 62v16v16q1 28 -1 62q-1 34 -8 54v0z"
id="path2"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

43
images/logo/mail.svg Normal file
View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
viewBox="-10 0 25 25"
id="svg6"
sodipodi:docname="courriel.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="8.560033"
inkscape:cx="63.551157"
inkscape:cy="25.175137"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<g
transform="matrix(0.04882812,0,0,-0.04882812,-10,21.874998)"
id="g4">
<path
fill="currentColor"
d="m 502,257 q 3,3 6.5,1 3.5,-2 3.5,-6 V 48 Q 512,28 498,14 484,0 464,0 H 48 Q 28,0 14,14 0,28 0,48 v 204 q 0,4 3.5,5.5 Q 7,259 10,257 43,232 164,144 l 10,-9 q 24,-18 38,-26 24,-13 44,-13 20,0 44,14 15,8 38,26 l 10,8 q 118,85 154,113 z M 256,128 q 13,0 32,12 11,6 31,22 l 10,7 q 126,91 169,125 l 5,4 q 9,7 9,19 v 19 q 0,20 -14,34 -14,14 -34,14 H 48 Q 28,384 14,370 0,356 0,336 v -19 q 0,-12 9,-19 l 7,-5 Q 60,259 183,169 l 10,-7 q 20,-16 31,-22 19,-12 32,-12 z"
id="path2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

43
images/logo/messenger.svg Normal file
View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
viewBox="-10 0 25 25"
id="svg6"
sodipodi:docname="messenger.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="19.514654"
inkscape:cx="3.5870479"
inkscape:cy="12.221585"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<g
transform="matrix(0.05040323,0,0,-0.05040363,-10.397726,22.177597)"
id="g4">
<path
fill="currentColor"
d="M 257,440 Q 149,438 80,372 v 0 Q 10,305 8,199 8,145 29,100 49,54 86,21 q 5,-3 6,-10 1,-7 2,-26 v -22 q 1,-10 9,-16 9,-5 19,-1 15,6 25,11 20,9 27,11 6,2 11,0 78,-20 151,3 72,22 119,81 47,59 49,147 -2,106 -71,173 -69,66 -176,68 z M 406,255 333,139 q -9,-13 -25,-16 -16,-3 -29,6 l -58,44 q -9,6 -18,0 l -79,-60 q -8,-5 -15,1 -6,6 -2,15 l 73,116 q 9,13 25,16 16,3 29,-6 l 58,-44 q 9,-6 18,0 l 79,59 q 8,6 15,0 6,-6 2,-15 z"
id="path2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

43
images/logo/phone.svg Normal file
View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
viewBox="-10 0 25 25"
id="svg179"
sodipodi:docname="phone.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs183" />
<sodipodi:namedview
id="namedview181"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="8.8348136"
inkscape:cx="59.197627"
inkscape:cy="31.070265"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg179" />
<g
transform="matrix(-0.04885993,0,0,-0.04885993,15.016284,21.872962)"
id="g177">
<path
fill="currentColor"
d="m 493,423 -104,24 q -8,2 -16,-2 -8,-4 -11,-11 L 314,322 q -3,-8 -1,-15.5 2,-7.5 8,-12.5 l 60,-50 Q 354,186 308.5,140 263,94 204,67 l -49,60 q -5,7 -13,8.5 -8,1.5 -15,-1.5 L 15,86 Q 7,83 3,75 -1,67 1,59 L 25,-45 q 1,-9 8,-14 7,-5 15,-5 126,0 234,63 105,62 167,167 63,108 63,234 0,8 -5,15 -5,7 -14,8 z"
id="path175" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

47
images/logo/work.svg Normal file
View file

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
viewBox="0 0 25 25"
enable-background="new 0 0 90 90"
xml:space="preserve"
id="svg18"
sodipodi:docname="work.svg"
width="25"
height="25"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs22" /><sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="7.2355556"
inkscape:cx="45.055282"
inkscape:cy="22.596744"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg18" /><g
id="g12"
transform="matrix(0.29411765,0,0,0.29411765,-1.4710589,-0.2647059)"><g
id="g4"><circle
cx="47.5"
cy="26.1"
r="20.1"
id="circle2" /></g><g
id="g10"><g
id="g8"><path
d="M 84.3,80.8 C 84.3,64.7 73.9,51.1 59.6,46.1 56.1,48.3 51.9,49.5 47.5,49.5 43.1,49.5 38.9,48.2 35.4,46.1 21,51.1 10.7,64.7 10.7,80.8 Z"
id="path6" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

43
images/maison-autisme.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

286
index.html Normal file
View file

@ -0,0 +1,286 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée en libérale pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta property="og:type" content="website">
<meta property="og:title" content="Educatrice spécialisée pour personne avec Autisme / TSA">
<meta property="og:description" content="entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation">
<meta property="og:site_name" content="La parenthèse bleue">
<meta property="og:url" content="https://laparenthesebleue.fr">
<meta property="og:image" content="https://laparenthesebleue.fr/images/illustrations/prestations/method.webp">
<link rel="canonical" href="https://laparenthesebleue.fr/">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="/config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<div class="home-bg">
<div class="home-title">
<h1 class="home-title">La parenthèse bleue</h1>
</div>
<div class="home-header">
<p class="home-headline">Un accompagnement éducatif empreint de bienveillance.</p>
<p>Enfants, Adolescents, Adultes TSA.</p>
</div>
<div class="home-footer">
<span class="home-contact">Contactez-moi</span>
<div class="home-contact-content">
<div>
<a href="mailto:contact@laparenthesebleue.fr" class="home-contact-logo home-contact-text"
title="Courriel">
<img class="contact-logo square-18" src="images/logo/mail.svg" alt="mail-logo">
</a>
contact@laparenthesebleue.fr
</div>
<div>
<a href="https://www.facebook.com/laparenthesebleue" class="home-contact-logo home-contact-text"
title="Facebook">
<img class="contact-logo square-18" src="images/logo/facebook.svg" alt="facebook-logo">
</a>
<a href="https://www.facebook.com/laparenthesebleue" class="home-contact-link" title="Facebook">facebook.com/laparenthesebleue</a>
</div>
<div>
<a href="https://www.instagram.com/la.parenthese.bleue" class="home-contact-logo home-contact-text"
title="Facebook">
<img class="contact-logo square-18" src="images/logo/insta.svg" alt="instagram-logo">
</a>
<a href="https://www.instagram.com/la.parenthese.bleue" class="home-contact-link" title="Instagram">instagram.com/la.parenthese.bleue</a>
</div>
<div>
<a href="https://m.me/laparenthesebleue" class="home-contact-logo home-contact-text" title="Messenger">
<img class="contact-logo square-18" src="images/logo/messenger.svg" alt="messenger-logo">
</a>
<a href="https://m.me/laparenthesebleue" class="home-contact-link" title="Messenger">m.me/laparenthesebleue</a>
</div>
<div>
<a href="tel:+33780198409" class="home-contact-logo home-contact-text" title="Téléphone">
<img class="contact-logo square-18" src="images/logo/phone.svg" alt="phone-logo">
</a>
07 80 19 84 09
</div>
</div>
</div>
</div>
<section>
<h2>Qui suis-je&nbsp;?</h2>
<div class="home-presentation">
<div class="illustrated-left">
<picture>
<img class="home-photo" src="images/illustrations/home/avatar.webp" alt="Jessica" loading="lazy">
</picture>
<div>
<a class="navigate-button" href="parcours.html">Mon parcours professionnel</a>
</div>
</div>
<div>
<div>
<p class="unmarged">
Je suis Jessica, jai 32 ans, et je travaille depuis plus de 14 ans auprès de personnes ayant un
<strong>TSA (Trouble du Spectre de lAutisme).</strong> Jai obtenu ma licence professionnelle
spécialisée dans
laccompagnement des personnes ayant un TSA en 2014 où jai acquis de solides connaissances sur la
psychopathologie de lautisme, le <strong>programme TEACCH, la méthode ABA, et le PECS</strong>
entre autres. Au
cours de mes différentes expériences professionnelles, jai continué à me former afin dacquérir
toujours plus de connaissances afin daccompagner au mieux les enfants, adolescents et adultes ayant
un TSA.
</p>
<p>
Ayant travaillé plusieurs années en établissements médico-sociaux, et une année en activité libérale
en 2016 dans une autre région, jai souhaité en 2023 retrouver cette activité libérale afin
daccompagner les
personnes <strong>en attente dune place en établissement médico-social</strong> et/ou les personnes
<strong>désirant un accompagnement éducatif spécialisé à leurs particularités</strong> afin
dassurer une
continuité de leur parcours.
</p>
<p>Lobjectif de mon activité est de vous proposer un <strong>accompagnement spécialisé et
individualisé</strong>, en adéquation avec votre rythme de vie familiale, dans lécoute et la
bienveillance.</p>
</div>
</div>
</div>
</section>
<section>
<div>
<h2>Mes prestations</h2>
<div>
<p>
Vous venez dapprendre que votre enfant ou votre proche a un TSA&nbsp;? Votre enfant ou votre proche est
sur liste dattente dun établissement médico-social&nbsp;? Vous souhaitez
<strong>développer les potentialités</strong> de votre enfant ou de votre proche <strong>dans sa vie
quotidienne</strong>&nbsp;?
</p>
<p>Je peux vous proposer un accompagnement individualisé et spécialisé.</p>
</div>
<div class="home-prestations marged">
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/cognitive-support.svg"
loading="lazy">
<h3>Accompagnement éducatif et cognitif</h3>
</div>
<div>
<p>Avec une structuration adaptée, et par lintermédiaire de jeux, plusieurs compétences peuvent
être travaillées.</p>
</div>
</div>
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/parental-coaching.svg"
loading="lazy">
<h3>Guidance parentale</h3>
</div>
<div>
<p>Avec un soutien et une écoute bienveillante, nous pourrons réfléchir ensemble à des actions sur
des thèmes précis de votre environnement familial.</p>
</div>
</div>
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/social-hability.svg"
loading="lazy">
<h3>Habiletés sociales</h3>
</div>
<div>
<p>Les codes sociaux, les émotions, adopter une posture adaptée… En fonction des besoins, un travail
individuel et/ou en groupe peut être proposé.</p>
</div>
</div>
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/job-coaching.svg" loading="lazy">
<h3>Job coaching</h3>
</div>
<div>
<p>Un accompagnement en entreprise ou sur les lieux de stage peut être proposé afin danalyser les
besoins en terme dadaptation de lenvironnement entre autres sur le lieu de travail.</p>
</div>
</div>
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/adapted-tools.svg" loading="lazy">
<h3>Outils visuels adaptés</h3>
</div>
<div>
<p>Des emplois du temps visuels, des pictogrammes, des économies de jetons pour favoriser la
motivation… En fonction des besoins, des outils visuels seront mis en place.</p>
</div>
</div>
<div>
<div class="home-prestations-title">
<img alt="logo" class="home-logo" src="images/illustrations/home/evaluations.svg">
<h3>Passation dévaluations</h3>
</div>
<div>
<p>Plusieurs évaluations peuvent vous être proposées selon vos besoins : EFI, CARS, Profils
sensoriels</p>
</div>
</div>
</div>
</div>
<div>
<a class="navigate-button" href="prestations.html">En savoir plus</a>
</div>
</section>
<section>
<h2>Périmètre dintervention</h2>
<p>Je peux me déplacer à domicile, à lécole, auprès détablissements médico-sociaux, et en entreprise.</p>
<img class="home-map-display" src="images/illustrations/home/map.webp"
alt="Carte du secteur d'intervention qui s'étend entre Dijon, Beaune et Dole" loading="lazy">
<p>Comme indiqué ci-dessus, je peux intervenir à Beaune, Dijon, Dole, Nuits-St-Georges, Saint-Jean-De-Losne, Genlis,
Auxonne, Seurre, et Verdun-Sur-Le-Doubs, ainsi que tous les villages alentours.</p>
<p>Je peux me déplacer au-delà de ce périmètre dintervention selon les besoins, en fonction également de votre lieu
dhabitation, avec un minimum de 2h daccompagnement consécutif. Nhésitez pas à me contacter afin détablir un
devis personnalisé.</p>
<p>Louverture dun cabinet en Plaine de Saône ( 21 ) pour vous recevoir est en prévision.</p>
</section>
<section>
<h2>Ressources utiles</h2>
<div class="home-resources">
<span>
<a href="https://maisondelautisme.gouv.fr" title="La maison de l'autisme">
<img src="images/illustrations/home/maison-autisme.webp" alt="La maison de l'autisme" loading="lazy">
</a>
<a href="https://www.bloghoptoys.fr" title="Le blog de Hop'Toys">
<img src="images/illustrations/home/hop-toys.webp" alt="Le blog de Hop'Toys" loading="lazy">
</a>
</span>
<span>
<a href="https://www.crabourgogne.org/" title="Le CRA de Bourgogne">
<img src="images/illustrations/home/cra_bourgogne.webp" alt="Le CRA de Bourgogne" loading="lazy">
</a>
<a href="mailto:contact@laparenthesebleue.fr" title="Le CRA de Franche-Comté">
<img src="images/illustrations/home/cra-franche-comte.webp" alt="Le CRA de Franche-Comté"
loading="lazy">
</a>
</span>
</div>
</section>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>

98
mentions.html Normal file
View file

@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune | Mentions légales</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="https://laparenthesebleue.fr/mentions">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<!--h1>Educatrice, spécialisée pour les personnes avec un TSA</h1-->
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<section>
<h2>Mentions légales</h2>
<h3>Mise à jour le 20 septembre 2023</h3>
<p>Vous souhaitez en savoir plus sur le site <a href="https://laparenthesebleue.fr">laparenthesebleue.fr</a>, voici
quelques informations pour vous guider. Pour toutes informations complémentaires, n'hésitez pas à nous
contacter à cette adresse : <a href="mailto:contact@laparenthesebleue.fr">contact@laparenthesebleue.fr</a></p>
<ul>
<li>Société éditrice : <a href="https://laparenthesebleue.fr">laparenthesebleue.fr</a></li>
<li>Siège Social : <a href="geo:47.326785,5.039522">51 rue Devoges 21000 Dijon</a></li>
<li>Société de domiciliation : <a
href="https://www.domiciliation-enligne.com/siege-entreprise-dijon">ADMINISTRO</a></li>
<li>Siret : <a href="https://avis-situation-sirene.insee.fr/">812 867 869 00032</a></li>
<li>Capital : 0€ (Auto-Entreprise)</li>
</ul>
<ul>
<li>Hébergeur : <a href="https://www.ovhcloud.com">OVH</a></li>
<li>Adresse de l'hébergeur : <a href="geo:50.692162,3.200026">2 rue Kellermann 59100 Roubaix</a></li>
</ul>
<p>Pas de gestion de protection des données personnelles ici, car nous ne recueillons aucune donnée à caractère
personnelle.</p>
</section>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo" loading="lazy">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>

241
parcours.html Normal file
View file

@ -0,0 +1,241 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune | Parcours</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta property="og:type" content="website">
<meta property="og:title" content="Educatrice spécialisée pour personne avec Autisme / TSA">
<meta property="og:description" content="entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation">
<meta property="og:site_name" content="La parenthèse bleue">
<meta property="og:url" content="https://laparenthesebleue.fr/parcours">
<meta property="og:image" content="https://laparenthesebleue.fr/images/illustrations/prestations/method.webp">
<link rel="canonical" href="https://laparenthesebleue.fr/parcours">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="/image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="/image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="/config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/cv.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<!--h1>Educatrice, spécialisée pour les personnes avec un TSA</h1-->
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<section id="formation">
<h2>Mes diplômes</h2>
<div class="resume-box">
<ul>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/degree.svg" alt="degree-logo" loading="lazy">
</div>
<p>Licence professionnelle "Accompagnant de personnes avec autisme et troubles apparentés"</p>
<span class="resume-details">Paris Descartes - 2014</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/degree.svg" alt="degree-logo" loading="lazy">
</div>
<p>DEUG de Psychologie</p>
<span class="resume-details">Université de Dijon - 2012</span>
</li>
</ul>
</div>
<h2>Mes formations</h2>
<div class="resume-box">
<ul>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>ABA Fonctionnelle</p>
<span class="resume-details">Noémie Blochet, Pyramid France</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Bilan sensoriel et perceptif&nbsp;: Utiliser un profil sensoriel pour proposer un plan daction
sensoriel individualisé</p>
<span class="resume-details">Romain Taton, EDI Formation</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Utiliser des outils numériques pour accompagner les personnes en situation de handicap mental ou
cognitif</p>
<span class="resume-details">Camille Riviere, Auticiel</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Snoezelen</p>
<span class="resume-details">Laurent Knodt, Pétrarque</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Programme TEACCH</p>
<span class="resume-details">Cécile Cousin, Pro Aid Autisme</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Utilisation de tablettes numériques pour des apprentissages auprès de personnes avec autisme</p>
<span class="resume-details">Learnenjoy</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Les particularités sensorielles des personnes avec autisme</p>
<span class="resume-details">Steven Degrieck</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>Le développement des habiletés sociales dans lautisme et les TED</p>
<span class="resume-details">EDI Formation</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>La méthode ABA</p>
<span class="resume-details">Ludivine Dufour, psychologue</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/certificate.svg" alt="certificate-logo"
loading="lazy">
</div>
<p>La pensée autistique et la communication concrète</p>
<span class="resume-details">Steven Degrieck</span>
</li>
</ul>
</div>
</section>
<section id="experiences">
<h2>Mes expériences professionnelles</h2>
<div class="resume-box">
<ul>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Coordonnatrice de service SESSAD TSA et UEMA</p>
<span class="resume-details">6 mois</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Educatrice spécialisée IME, Dispositif TSA</p>
<span class="resume-details">3 ans et demi</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Educatrice spécialisée FAM spécialisé Autisme</p>
<span class="resume-details">3 ans et demi</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Educatrice spécialisée en libéral&nbsp;: accompagnement denfants TSA de 4 à 20 ans</p>
<span class="resume-details">1 an</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Stage Licence Professionnelle en Centre dAccueil Temporaire pour enfants TSA</p>
<span class="resume-details">1 an</span>
</li>
<li>
<div class="resume-icon">
<img class="resume-logo h25" src="images/logo/work.svg" alt="work-logo" loading="lazy">
</div>
<p>Remplacements saisonniers MAS et FAM</p>
<span class="resume-details">4 ans</span>
</li>
</ul>
</div>
</section>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo" loading="lazy">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>

268
prestations.html Normal file
View file

@ -0,0 +1,268 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune | Prestations</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta property="og:type" content="website">
<meta property="og:title" content="Educatrice spécialisée pour personne avec Autisme / TSA">
<meta property="og:description" content="entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation">
<meta property="og:site_name" content="La parenthèse bleue">
<meta property="og:url" content="https://laparenthesebleue.fr/prestations">
<meta property="og:image" content="https://laparenthesebleue.fr/images/illustrations/prestations/method.webp">
<link rel="canonical" href="https://laparenthesebleue.fr/prestations">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="/image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="/image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<!--h1>Educatrice, spécialisée pour les personnes avec un TSA</h1-->
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<main>
<div>
<section>
<h2>Mes méthodes daccompagnement</h2>
<div>
<img class="illustrated illustrated-left" src="images/illustrations/prestations/method.webp"
alt="une éducatrice accompagne un enfant" loading="lazy">
<div>
<p>
Grâce à mes <a href="parcours.html#formation">différentes formations</a> et <a
href="parcours.html#experiences">mon expérience</a> auprès de personnes ayant un TSA, je
suis en mesure de développer des outils et des
approches spécifiquement adaptés aux besoins de chacun.
</p>
<p>
<strong>Jadapte mon acompagnement en fonction de leur personnalité, de leurs compétences, et de
leurs capacités</strong>, tout en utilisant les méthodes cognitivo-comportementales,
recommandées par la Haute Autorité de
Santé.
</p>
<p>
Mon objectif est d'<strong>améliorer le quotidien de la personne, ainsi que celui de ses
proches</strong>. Dans ce but, jai à coeur de travailler en étroite collaboration avec les
partenaires médico-sociaux et libéraux afin d'échanger et de partager nos observations dans
l'intérêt de l'enfant, l'adolescent ou l'adulte. Ce travail en réseau permet également d'assurer
une continuité du parcours de votre proche.
</p>
<p>
En tant que professionnel indépendant, je m'astreins également à <strong>maintenir une veille
informationnelle</strong> sur les Troubles du Spectre de lAutisme afin daméliorer
régulièrement mes connaissances et ma pratique.
</p>
</div>
</div>
</section>
<section>
<h2>Ce que je propose</h2>
<img class="illustrated illustrated-right" src="images/illustrations/prestations/senso.webp"
alt="Enfant jouant avec un moulin à vent" loading="lazy">
<h3>Accompagnement et soutien à la communication</h3>
<p>
Formée à la méthode PECS durant ma licence professionnelle, à la communication concrète, et sensibilisée
au programme Makaton, je pourrai durant mes séances <strong>accompagner le langage et la communication
de la personne accompagnée</strong>. Le soutien au langage, quil soit oral ou par échange dimages, est
essentiel afin que la personne accompagnée puisse sexprimer, exprimer ses envies et besoins, et
comprendre davantage les demandes ou
interpellations dautrui. Si un suivi orthophonique est mis en place, je peux me mettre en lien avec
lorthophoniste afin davoir une cohérence dans laccompagnement.
</p>
<h3>Satisfaire ou réguler les besoins sensoriels</h3>
<p>
Formée à lapproche Snoezelen et au profil sensoriel ciblé, je peux proposer <strong>des activités et
des moments spécifiques dédiés au sensoriel afin de répondre aux besoins importants des personnes ayant
un TSA</strong>. Elles présentent généralement des troubles sensoriels et perceptifs pouvant impacter
considérablement leur quotidien. Un profil sensoriel peut être réalisé afin de repérer les
particularités sensorielles et des
aménagements pourront ainsi être proposés afin de diminuer leur inconfort au quotidien.
</p>
<h3>Gérer les comportements problèmes</h3>
<p>
Les troubles du comportement peuvent être très difficiles à gérer au quotidien. Ces comportements
apparaissent pour une raison, qui est parfois difficile à comprendre. Je peux ainsi vous proposer de
réaliser <strong>une analyse fonctionnelle du comportement afin danalyser ensemble la raison de son
apparition</strong> (besoin dattention, surcharge sensorielle, douleur somatique, frustration,
difficulté de compréhension…). Je pourrai ainsi
vous soutenir et vous aider au quotidien avec des outils (supports visuels, time timer pour gérer le
temps...), et vous guider quant à la posture à adopter face à lapparition du comportement problème.
Grâce à
lanalyse fonctionnelle, un travail éducatif de fond sera réalisé avec des objectifs précis (travail sur
limpulsivité, les imprévus, les émotions, les demandes daide…).
</p>
<img class="illustrated illustrated-left" src="images/illustrations/prestations/interac.webp"
alt="Deux enfants jouant sous la surveillance d'une educatrice" loading="lazy">
<h3>Développer les interactions sociales</h3>
<p>
Les habiletés sociales sont très abstraites pour les personnes ayant un TSA. Dire bonjour, regarder son
interlocuteur dans les yeux, avoir une réciprocité sociale, entre autres, nest pas inné. En fonction de
lâge de la personne, plusieurs choses peuvent être travaillées de manière individuelle ou en groupe
selon les possibilités : <strong>apprendre et appliquer les codes sociaux, apprendre à jouer ensemble,
tenir une conversation, adopter une posture adaptée, gérer des conflits</strong>… En fonction du mode de
communication de la personne, les supports seront adaptés (scénarios sociaux par images, par écrit…).
</p>
<h3>Développer les compétences cognitives</h3>
<p>
Plusieurs compétences cognitives sont travaillées par lintermédiaire de jeux et sont importantes pour
le développement de lenfant et de ladulte. Limitation, la catégorisation, le tour de rôle ( entre
autres ) peuvent être travaillés en séance éducative. Avec un aménagement spécifique de lenvironnement,
et lutilisation de renforçateurs si besoin ( des félicitations, des jeux sensoriels après les
activités… ), la personne ne se rend pas forcément compte du développement de ces compétences. Jai une
<strong>belle « boîte à outils » avec diverses activités ou jeux permettant de développer les
potentialités de la personne</strong>.
</p>
<h3>Inclusion dans la société</h3>
<p>
Aller à lécole, faire des courses, aller chez le médecin, faire du sport, sont des activités
quotidiennes pour beaucoup dentre nous, mais difficiles à réaliser pour les personnes ayant un TSA à
cause de difficultés
sensorielles, dangoisses, de difficultés sociales... Un accompagnement éducatif peut être réalisé afin
de prévoir ces sorties (à laide doutils visuels ou scénarios sociaux), <strong>dadapter
lenvironnement quand cela
est possible, et daccompagner la personne afin dapporter un soutien éducatif</strong>. Un
accompagnement à lécole peut être réalisé afin dapporter des outils en accord avec les enseignants.
</p>
<p>
Les comportements et compétences acquises en séance <strong>doivent être généralisés dans tous les lieux
de vie avec du matériel différent</strong>, afin dêtre le plus autonome possible selon ses
possibilités. Par exemple, si la
personne peut se laver les mains seule à lécole, nous allons vérifier quelle sache se laver les mains
seule à la maison également.
</p>
<img class="illustrated illustrated-right" src="images/illustrations/prestations/soutien.webp"
alt="une éducatrice fait de la guidance parentale" loading="lazy">
<h3>Soutenir et accompagner la famille</h3>
<p>
Sans jugement, dans la discrétion, avec une écoute et un soutien bienveillant, je vous propose de
réfléchir ensemble à des actions permettant de <strong>développer les potentialités de votre enfant ou
de votre proche, et /
ou de retrouver une atmosphère familiale plus sereine</strong>. Vous pouvez me faire confiance pour
échanger vos doutes, vos questionnements, et vos difficultés. Lobjectif est de trouver ensemble ce qui
convient le mieux à
votre enfant ou votre proche, et à votre rythme familial.
</p>
<h3>Sensibilisation aux TSA</h3>
<p>
Avec mes solides connaissances sur les TSA, et mes riches expériences professionnelles, je peux vous
proposer une sensibilisation à destination des familles, des établissements scolaires, des
professionnels, des
institutions, et des entreprises. Lobjectif est de mieux comprendre les Troubles du Spectre de
lAutisme, laccompagnement spécifique des personnes avec un TSA, les outils et stratégies éducatives
pouvant être mis
en place, la structuration de lenvironnement et du temps, la posture à adopter, et les particularités
sensorielles avec des aménagements spécifiques pouvant être réalisés… Vous pouvez me contacter pour
établir
ensemble vos besoins.
</p>
<h3>Passation dévaluations</h3>
<p>
<strong>
En France, seul un médecin (psychiatre, pédosychiatre, ou neurologue) est habilité à délivrer un
diagnostic de TSA. Le diagnostic peut être réalisé en libéral, en centre de dépistage à lhôpital ou
dans le CRA de votre région.
</strong>
</p>
<p>Il mest possible de faire passer plusieurs évaluations :</p>
<ul>
<li>
<p><strong>EFI : Evaluation des compétences Fonctionnelles pour lIntervention.</strong></p>
<p>
Cette évaluation est davantage proposée pour des adolescents et adultes, et aborde six domaines
fonctionnels : Communication réceptive, Communication expressive, Travail de bureau, Travail
ménager, Autonomie
personnelle, Activités de loisirs. Elle permet de situer le niveau de réalisation des personnes
sur diverses activités du quotidien. Un programme dintervention est proposé à la suite de la
passation de
lEFI, avec une liste non exhaustive dactivités permettant le développement des compétences en
émergence.
</p>
</li>
<li>
<p><strong>CARS : Childhood Autistic Rating Scale ou Echelle dévaluation de lautisme chez
lenfant</strong></p>
<p>
Cet outil permet dapprécier le degré de sévérité des troubles autistiques. Il permet de valider
ou dinvalider des soupçons sur un éventuel TSA, mais nest pas un outil diagnostic. La
réalisation de cette
échelle dévaluation comprend un entretien avec la famille et une observation des comportements
de lenfant.
</p>
</li>
<li>
<p><strong>Profil sensoriel de DUNN </strong></p>
<p>
Lélaboration du profil sensoriel peut être pertinent pour des personnes présentant des troubles
de lintégration sensorielle qui affecte son quotidien. Il sagit dun questionnaire à
destination des parents
ou proches de la personne. Il permet de mesurer les capacités de traitement de linformation
sensorielle et évalue leur impact au quotidien. A la suite de lélaboration de ce profil, des
propositions
daménagements seront proposés afin de soulager les troubles de lintégration sensorielle.
</p>
</li>
</ul>
</section>
</div>
</main>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo" loading="lazy">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>

4
robots.txt Normal file
View file

@ -0,0 +1,4 @@
User-agent: *
Allow: /
Sitemap: https://laparenthesebleue.fr/sitemap.xml

39
sitemap.xml Normal file
View file

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://laparenthesebleue.fr/</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://laparenthesebleue.fr/index.html</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://laparenthesebleue.fr/parcours.html</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://laparenthesebleue.fr/prestations.html</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://laparenthesebleue.fr/tarifs.html</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://laparenthesebleue.fr/mentions.html</loc>
<lastmod>2023-10-31T22:00:00+00:00</lastmod>
<priority>0.20</priority>
</url>
</urlset>

200
tarifs.html Normal file
View file

@ -0,0 +1,200 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Educatrice spécialisée Autisme / TSA entre Dijon, Dole et Beaune | Tarifs</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Educatrice spécialisée pour personne avec Autisme / TSA (adulte ou enfant) entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation | Cote d'or (21) - Jura (39) - Saône et Loire (71)">
<meta property="og:type" content="website">
<meta property="og:title" content="Educatrice spécialisée pour personne avec Autisme / TSA">
<meta property="og:description" content="entre Dijon, Beaune et Dole pour un accompagnement ou une évaluation">
<meta property="og:site_name" content="La parenthèse bleue">
<meta property="og:url" content="https://laparenthesebleue.fr/tarifs">
<meta property="og:image" content="https://laparenthesebleue.fr/images/illustrations/prestations/method.webp">
<link rel="canonical" href="https://laparenthesebleue.fr/tarifs">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="icon" type="image/svg+xml" href="images/icons/favicon.svg">
<link rel="icon" type="image/png" href="images/icons/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="/config/site.webmanifest">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/price.css">
</head>
<body>
<header>
<nav class="header">
<a href="index.html"><img class="square-40 brand" alt="logo" src="images/illustrations/logo.svg"></a>
<!--h1>Educatrice, spécialisée pour les personnes avec un TSA</h1-->
<input class="menu-btn" type="checkbox" id="menu-btn">
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="parcours.html">Mon parcours</a></li>
<li><a href="prestations.html">Mes prestations</a></li>
<li><a href="tarifs.html">Tarifs et aides</a></li>
</ul>
</nav>
</header>
<section>
<h2>Mes tarifs</h2>
<p>La préparation des séances, des outils éducatifs, et des rencontres avec les différents partenaires sont réalisés
en dehors du temps passé avec votre enfant ou votre proche. Ainsi, mes tarifs comprennent également : </p>
<ul>
<li>La <strong>création et la réalisation</strong> d'outils visuels adaptés à chacun ( pictogrammes, emploi du
temps de travail... ).
</li>
<li>La <strong>préparation des rencontres</strong> avec les différents partenaires.</li>
<li>La <strong>préparation des séances</strong> : plastifier des supports visuels, choisir, préparer et
structurer des activités.
</li>
<li>L'<strong>achat</strong> de matériel éducatif, sensoriel, et de loisirs.</li>
<li>Les <strong>rendez-vous téléphoniques</strong> avec certains partenaires.</li>
<li>La <strong>rédaction</strong> des bilans annuels de suivis éducatifs.</li>
<li>Le <strong>coût du transport</strong> en cas de déplacement à domicile.</li>
</ul>
<div class="devis"><strong>Mes devis sont gratuits</strong></div>
<div>
<div class="price-item">
<div>
<h3>Entretien de rencontre 1h/1h30</h3>
<p>
Après un premier contact par téléphone ou par mail, ce premier entretien nous permet de <strong>se
rencontrer, de faire connaissance, de recueillir vos besoins et ceux de votre enfant ou de votre
proche</strong>. Nous pourrons alors définir ensemble les futurs objectifs de travail ainsi que vos
priorités quant à laccompagnement proposé.
</p>
</div>
<div>40€</div>
</div>
<div class="price-item">
<div>
<h3>Séance individuelle 1h</h3>
<p>
Selon les objectifs de travail proposés, les séances pourront se dérouler à domicile, au cabinet
(quand ce sera possible), à lécole, en institution, en entreprise, ou ailleurs selon les besoins
(supermarchés, aires de jeux, piscine…). Les premières séances seront <strong>une période
dobservation et permettront de créer un lien</strong> avec la personne. Selon mes observations, des
nouveaux objectifs pourront être proposés.
</p>
</div>
<div>40€</div>
</div>
<div class="price-item">
<div>
<h3>Séance de groupe 1h</h3>
<p>
En fonction des besoins, des séances en groupe pourront être proposées, comme <strong>des groupes
dentraînement aux habiletés sociales, et/ou des groupes sur des thèmes précis</strong> (prendre les
transports en commun, faire des courses…).
</p>
</div>
<div>40€</div>
</div>
<div class="price-item">
<div>
<h3>Participation aux ESS</h3>
<p>
Afin dapporter une cohérence dans le parcours de la personne, je peux participer aux ESS à la
demande des parents. Je pourrai ainsi échanger avec tous les intervenants de lenfant sur <strong>le
contenu de mes séances et des objectifs travaillés</strong>. En cas de difficultés rencontrées dans
létablissement scolaire, je pourrais proposer des outils spécifiques ou un accompagnement à
lécole. Je participerai également aux échanges concernant lorientation scolaire de votre enfant.
</p>
</div>
<div>40€</div>
</div>
<div class="price-item">
<div>
<h3>Participation aux synthèses des établissements médico-sociaux</h3>
<p>
Lorsque létablissement médico-social minvite à leur synthèse annuelle, il mest possible de
participer aux échanges. Jexposerai alors <strong>les objectifs travaillés en séances, et le
contenu de celles-ci</strong>.
</p>
</div>
<div>40€/h</div>
</div>
<div class="price-item">
<div>
<h3>Rencontre avec un établissement médico-social</h3>
<p>
Selon les besoins, il mest possible de rencontrer les établissements médico-sociaux afin dapporter
une cohérence dans laccompagnement. Elle est essentielle afin que la personne soit <strong>accompagnée
quotidiennement avec les mêmes outils</strong> (pictogrammes et réponses éducatives identiques par
exemple). Je pourrais également accompagner létablissement médico-social dans la mise en place
doutils visuels spécifiques.
</p>
</div>
<div>40€/h</div>
</div>
</div>
</section>
<section>
<h2>Aides financières</h2>
<div>
<img class="illustrated illustrated-right" src="images/illustrations/prices/aides.webp"
alt="Une personne rempli les déclarations pour avoir recours aux aides" loading="lazy">
<div>
<p>Plusieurs aides financières sont susceptibles de compenser la dépense liée à laccompagnement éducatif&nbsp;:</p>
<ul>
<li>Lallocation dEducation de lEnfant Handicapé&nbsp;(AEEH)</li>
<li>Lallocation aux Adultes Handicapés&nbsp;(AAH)</li>
<li>Prestation de Compensation du Handicap&nbsp;(PCH)</li>
<li>Certaines mutuelles peuvent également vous accompagner financièrement, renseignez-vous auprès de
votre complémentaire santé.
</li>
</ul>
<p><a href="https://www.service-public.fr/particuliers/vosdroits/N12230" target="_blank">Pour plus
d'informations (service-public.fr)</a></p>
<p><a href="https://place-handicap.fr/Telecharger-le-dossier" target="_blank">Aide pour remplir le dossier
MDPH</a></p>
</div>
</div>
</section>
<footer>
<div>
<h2>La parenthèse bleue</h2>
<p>Un accompagnement éducatif empreint de bienveillance.</p>
<nav>
<ul class="footer-contact">
<li>
<a href="tel:+33780198409" title="Téléphone">
<img class="contact-logo square-24" src="images/logo/phone.svg" alt="phone-logo" loading="lazy">
</a>
</li>
<li>
<a href="mailto:contact@laparenthesebleue.fr" title="Courriel">
<img class="contact-logo square-24" src="images/logo/mail.svg" alt="mail-logo" loading="lazy">
</a>
</li>
<li>
<a href="https://www.facebook.com/laparenthesebleue" title="Facebook">
<img class="contact-logo square-24" src="images/logo/facebook.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://www.instagram.com/la.parenthese.bleue" title="Instagram">
<img class="contact-logo square-24" src="images/logo/insta.svg" alt="instagram-logo"
loading="lazy">
</a>
</li>
<li>
<a href="https://m.me/laparenthesebleue" title="Messenger">
<img class="contact-logo square-24" src="images/logo/messenger.svg" alt="messenger-logo"
loading="lazy">
</a>
</li>
</ul>
</nav>
</div>
<div>© La parenthèse bleue. Tous droits réservés.</div>
<div><a href="mentions.html">Mentions légales</a></div>
</footer>
</body>
</html>