Commit 70e8e58c by PLN (Algolia)

pln: Skeleton

parent 57c9420b
...@@ -29,8 +29,5 @@ module.exports = { ...@@ -29,8 +29,5 @@ module.exports = {
}, },
}, },
`gatsby-plugin-gatsby-cloud`, `gatsby-plugin-gatsby-cloud`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
], ],
} }
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 = () => (
<Layout>
<Seo title="Hydra" />
<h1>Hydra</h1>
<p>With <a href="https://github.com/ojack/hydra/">Hydra</a>, I create some eye-catchers:</p>
<StaticImage
src="../images/WIP_GaLactic.png"
width={2048}
quality={95}
formats={["AUTO", "WEBP", "AVIF"]}
alt="A Gatsby astronaut"
style={{ marginBottom: `1.45rem` }}
/>
<Link to="/">Home</Link>
</Layout>
)
export default Hydra
import * as React from "react" import * as React from "react"
import { Link } from "gatsby" import { Link } from "gatsby"
import { StaticImage } from "gatsby-plugin-image"
import Layout from "../components/layout" import Layout from "../components/layout"
import Seo from "../components/seo" import Seo from "../components/seo"
...@@ -9,22 +8,22 @@ const IndexPage = () => ( ...@@ -9,22 +8,22 @@ const IndexPage = () => (
<Layout> <Layout>
<Seo title="PLN's Home" /> <Seo title="PLN's Home" />
<h1>Welcome!</h1> <h1>Welcome!</h1>
<h2>I'm PLN, and I love to <b>transform</b> <h2>I'm PLN, and I love to <i>transform…</i></h2>
</h2>
<p>This is gonna be great.</p> <h3>…code into <em>human solutions</em></h3>
<StaticImage
src="../images/WIP_GaLactic.png"
width={2048}
quality={95}
formats={["AUTO", "WEBP", "AVIF"]}
alt="A Gatsby astronaut"
style={{ marginBottom: `1.45rem` }}
/>
<p> <p>
<Link to="/page-2/">Go to page 2</Link> <br /> At <Link to="/algolia/">Algolia</Link>, I create technologies to help humans find things and answers.
<Link to="/using-typescript/">Go to "Using TypeScript"</Link>
</p> </p>
<h3>…code into <em>music</em></h3>
<p>
As <Link to="/parvagues/">ParVagues</Link>, I write patterns that shape soundwaves.
</p>
<h3>…code into <em>animated pixelscapes</em></h3>
<p>
Using <Link to="/hydra/">Hydra</Link>, I create technologies to help humans find things and answers
</p>.
</Layout> </Layout>
) )
......
...@@ -4,13 +4,13 @@ import { Link } from "gatsby" ...@@ -4,13 +4,13 @@ import { Link } from "gatsby"
import Layout from "../components/layout" import Layout from "../components/layout"
import Seo from "../components/seo" import Seo from "../components/seo"
const SecondPage = () => ( const ParVagues = () => (
<Layout> <Layout>
<Seo title="Page two" /> <Seo title="ParVagues" />
<h1>Hi from the second page</h1> <h1>ParVagues</h1>
<p>Welcome to page 2</p> <p>ParVagues, c'est des ondes sonores qui naissent dans un océan binaire pour parfois s'échouer sur vos plages sonores.</p>
<Link to="/">Go back to the homepage</Link> <Link to="/">Retour</Link>
</Layout> </Layout>
) )
export default SecondPage export default ParVagues
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment