diff --git a/pln/gatsby-config.js b/pln/gatsby-config.js index b8de074..b3cb60d 100644 --- a/pln/gatsby-config.js +++ b/pln/gatsby-config.js @@ -29,8 +29,5 @@ module.exports = { }, }, `gatsby-plugin-gatsby-cloud`, - // this (optional) plugin enables Progressive Web App + Offline functionality - // To learn more, visit: https://gatsby.dev/offline - // `gatsby-plugin-offline`, ], } diff --git a/pln/src/pages/hydra.js b/pln/src/pages/hydra.js new file mode 100644 index 0000000..5872fa9 --- /dev/null +++ b/pln/src/pages/hydra.js @@ -0,0 +1,25 @@ +import * as React from "react" +import { Link } from "gatsby" +import { StaticImage } from "gatsby-plugin-image" + +import Layout from "../components/layout" +import Seo from "../components/seo" + +const Hydra = () => ( + + +

Hydra

+

With Hydra, I create some eye-catchers:

+ + Home +
+) + +export default Hydra diff --git a/pln/src/pages/index.js b/pln/src/pages/index.js index b587169..9f402fd 100644 --- a/pln/src/pages/index.js +++ b/pln/src/pages/index.js @@ -1,6 +1,5 @@ import * as React from "react" import { Link } from "gatsby" -import { StaticImage } from "gatsby-plugin-image" import Layout from "../components/layout" import Seo from "../components/seo" @@ -9,22 +8,22 @@ const IndexPage = () => (

Welcome!

-

I'm PLN, and I love to transform -

+

I'm PLN, and I love to transform…

-

This is gonna be great.

- +

…code into human solutions

- Go to page 2
- Go to "Using TypeScript" + At Algolia, I create technologies to help humans find things and answers.

+ +

…code into music

+

+ As ParVagues, I write patterns that shape soundwaves. +

+ +

…code into animated pixelscapes

+

+ Using Hydra, I create technologies to help humans find things and answers +

.
) diff --git a/pln/src/pages/page-2.js b/pln/src/pages/parvagues.js similarity index 51% rename from pln/src/pages/page-2.js rename to pln/src/pages/parvagues.js index 74b96e0..4edd13b 100644 --- a/pln/src/pages/page-2.js +++ b/pln/src/pages/parvagues.js @@ -4,13 +4,13 @@ import { Link } from "gatsby" import Layout from "../components/layout" import Seo from "../components/seo" -const SecondPage = () => ( +const ParVagues = () => ( - -

Hi from the second page

-

Welcome to page 2

- Go back to the homepage + +

ParVagues

+

ParVagues, c'est des ondes sonores qui naissent dans un océan binaire pour parfois s'échouer sur vos plages sonores.

+ Retour
) -export default SecondPage +export default ParVagues