diff --git a/README.md b/README.md index 4a4bdae..7332645 100644 --- a/README.md +++ b/README.md @@ -1,99 +1,5 @@ - -

- - Gatsby - -

-

- Gatsby's default starter -

+# Lékol PLUS -Kick off your project with this default boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React. - -_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.org/docs/gatsby-starters/)._ - -## 🚀 Quick start - -1. **Create a Gatsby site.** - - Use the Gatsby CLI to create a new site, specifying the default starter. - - ```shell - # create a new Gatsby site using the default starter - gatsby new my-default-starter https://github.com/gatsbyjs/gatsby-starter-default - ``` - -1. **Start developing.** - - Navigate into your new site’s directory and start it up. - - ```shell - cd my-default-starter/ - gatsby develop - ``` - -1. **Open the source code and start editing!** - - Your site is now running at `http://localhost:8000`! - - _Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._ - - Open the `my-default-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time! - -## 🧐 What's inside? - -A quick look at the top-level files and directories you'll see in a Gatsby project. - - . - ├── node_modules - ├── src - ├── .gitignore - ├── .prettierrc - ├── gatsby-browser.js - ├── gatsby-config.js - ├── gatsby-node.js - ├── gatsby-ssr.js - ├── LICENSE - ├── package-lock.json - ├── package.json - └── README.md - -1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed. - -2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”. - -3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for. - -4. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent. - -5. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser. - -6. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail). - -7. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process. - -8. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering. - -9. **`LICENSE`**: This Gatsby starter is licensed under the 0BSD license. This means that you can see this file as a placeholder and replace it with your own license. - -10. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You won’t change this file directly).** - -11. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project. - -12. **`README.md`**: A text file containing useful reference information about your project. - -## 🎓 Learning Gatsby - -Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start: - -- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process. - -- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar. - -## 💫 Deploy - -[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default) - -[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/gatsbyjs/gatsby-starter-default) - - +- [URL](https://lucid-pare-c30a9e.netlify.app/) +- deployed on Netlify +- using Gatsby diff --git a/gatsby-config.js b/gatsby-config.js index 942c81a..141dc7b 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -4,7 +4,7 @@ module.exports = { subtitle: ``, description: `Institut d'enseignement du primaire au lycée en Guadeloupe`, author: `@lekolplus`, - siteUrl: "", + // siteUrl: "", }, plugins: [ `gatsby-plugin-react-helmet`, 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/components/buttonCTA.jsx b/src/components/buttonCTA.jsx new file mode 100644 index 0000000..64cfb35 --- /dev/null +++ b/src/components/buttonCTA.jsx @@ -0,0 +1,29 @@ +import React from "react" +import PropTypes from "prop-types" +import { Link } from "gatsby" + +import * as ROUTES from "../global/routes" + +const ButtonCTA = ({ text, variant }) => { + let className = "get-started-btn" + if (variant === "secondary") { + className = "btn-get-started" + } + return ( + + {text} + + ) +} + +export default ButtonCTA + +ButtonCTA.propTypes = { + text: PropTypes.string, + variant: PropTypes.string, +} + +ButtonCTA.defaultProps = { + text: "Inscription", + variant: "primary", +} diff --git a/src/components/counters.jsx b/src/components/counters.jsx new file mode 100644 index 0000000..a3f7c75 --- /dev/null +++ b/src/components/counters.jsx @@ -0,0 +1,31 @@ +import React from "react" + +const Counters = () => ( +
+
+
+
+ 1232 +

Élèves

+
+ +
+ 64 +

Cours

+
+ +
+ 42 +

Ateliers

+
+ +
+ 15 +

Enseignants

+
+
+
+
+) + +export default Counters diff --git a/src/components/courseItem.jsx b/src/components/courseItem.jsx new file mode 100644 index 0000000..bc2eece --- /dev/null +++ b/src/components/courseItem.jsx @@ -0,0 +1,32 @@ +import React from "react" +import PropTypes from "prop-types" + +const CourseItem = ({ title, price, description, image }) => { + return ( +
+
+ ... +
+
+

{title}

+

{`${price}€/h`}

+
+ +

+ {title} +

+

{description}

+
+
+
+ ) +} + +export default CourseItem + +CourseItem.propTypes = { + title: PropTypes.string.isRequired, + price: PropTypes.number.isRequired, + description: PropTypes.string.isRequired, + image: PropTypes.node.isRequired, +} diff --git a/src/components/courses.jsx b/src/components/courses.jsx new file mode 100644 index 0000000..0ee6f2c --- /dev/null +++ b/src/components/courses.jsx @@ -0,0 +1,49 @@ +import React from "react" + +import CourseItem from "./courseItem" + +import img1 from "../static/img/course-1.jpg" +import img2 from "../static/img/course-2.jpg" +import img3 from "../static/img/course-3.jpg" + +const data = [ + { + title: "Garderie", + price: 10, + description: + "Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse necessitatibus sunt, porro animi vel officiis?", + image: img1, + }, + { + title: "Collège", + price: 15, + description: + "Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse necessitatibus sunt, porro animi vel officiis?", + image: img2, + }, + { + title: "Lycée", + price: 18, + description: + "Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse necessitatibus sunt, porro animi vel officiis?", + image: img3, + }, +] + +const Courses = () => ( + +) + +export default Courses diff --git a/src/components/footer.jsx b/src/components/footer.jsx index 84ac94f..84d646a 100644 --- a/src/components/footer.jsx +++ b/src/components/footer.jsx @@ -1,11 +1,126 @@ import React from "react" +import PropTypes from "prop-types" +import { Link } from "gatsby" -const Footer = () => ( -