diff --git a/TODO.md b/TODO.md index d32a7ac..1987ea2 100644 --- a/TODO.md +++ b/TODO.md @@ -12,3 +12,5 @@ # Customization - General style - Favicon + +- Hydras: Highlight with https://www.npmjs.com/package/react-syntax-highlighter diff --git a/next/pages/parvagues.js b/next/pages/parvagues.js index 742c561..25e975d 100644 --- a/next/pages/parvagues.js +++ b/next/pages/parvagues.js @@ -9,11 +9,15 @@ import ReactPlayer from "react-player"; export async function getStaticProps(context) { return { - props: {}, + props: { + urlSC: "https://soundcloud.com/parvagues/", + urlTwitch: "https://twitch.tv/parvagues/", + urlTwitchExample: "https://www.twitch.tv/videos/965233250" + }, }; } -export default function ParVagues() { +export default function ParVagues({urlSC, urlTwitch, urlTwitchExample}) { return ( @@ -24,8 +28,8 @@ export default function ParVagues() {

I create music with patterns

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

{/*ParVagues performing*/}
-
+
+

I sometimes post recordings on SoundCloud

+
+
+

I sometimes do live performances on Twitch

+
+ +
+
); diff --git a/next/styles/main.css b/next/styles/main.css index 9592934..c8a1a05 100644 --- a/next/styles/main.css +++ b/next/styles/main.css @@ -50,6 +50,10 @@ p.code { font-family: monospace; } +section { + margin-bottom: 4em; +} + small { font-size: 1rem; } @@ -60,7 +64,12 @@ footer { color: #228; } +h1 a, h2 a, h3 a, h4 a, h5 a { + text-decoration: underline; +} + .player-wrapper { + padding: 12em 0; position: relative; padding-top: 56.25% /* Player ratio: 100 / (1280 / 720) */ }