diff --git a/src/components/about.jsx b/src/components/about.jsx
new file mode 100644
index 0000000..8da3270
--- /dev/null
+++ b/src/components/about.jsx
@@ -0,0 +1,68 @@
+import React from "react"
+import { useStaticQuery, graphql, Link } from "gatsby"
+import Img from "gatsby-image"
+
+import * as ROUTES from "../global/routes"
+
+const Image = () => {
+ const data = useStaticQuery(graphql`
+ query {
+ placeholderImage: file(relativePath: { eq: "about.jpg" }) {
+ childImageSharp {
+ fluid {
+ ...GatsbyImageSharpFluid
+ }
+ }
+ }
+ }
+ `)
+
+ return (
+
+ )
+}
+
+const About = () => (
+
+
+
+
À Propos
+
Qui sommes-nous
+
+
+
+
+
+
+
+
Éducateurs expérimentés
+
+ Des éducateurs innovants au service de la réussite de votre enfant.
+
+
+
+ X années d'expériences.
+
+
+ Méthode éprouvée à
+ l'internationale.
+
+
+
+ Nous nous concentrons sur le développement de l'autonomie de
+ l'étudiant.
+
+
+ En Savoir Plus
+
+
+
+
+
+)
+
+export default About
diff --git a/src/static/img/about.jpg b/src/images/about.jpg
similarity index 100%
rename from src/static/img/about.jpg
rename to src/images/about.jpg
diff --git a/src/pages/index.jsx b/src/pages/index.jsx
index 40d3f52..3c029ac 100644
--- a/src/pages/index.jsx
+++ b/src/pages/index.jsx
@@ -3,6 +3,7 @@ import React from "react"
import Layout from "../components/layout"
import SEO from "../components/seo"
import Hero from "../components/hero"
+import About from "../components/about"
const IndexPage = () => (
@@ -11,6 +12,7 @@ const IndexPage = () => (
title="Le PLUS pour mener votre enfant vers la réussite"
subtitle="Accompagnement et suivi personnalisé orienté vers l'international"
/>
+
)