Commit 9adc6b1d by PLN (Algolia)

feat(Hydra): Glitchp00l video

parent 4c1ba84a
......@@ -16,7 +16,7 @@ export async function getStaticProps() {
};
}
export default function Hydra({hydras}) {
export default function Hydra({ hydras }) {
return (
<Layout className="hydra">
<Head>
......@@ -25,6 +25,18 @@ export default function Hydra({hydras}) {
</Head>
<div>
<h1>I create visuals with patterns</h1>
<iframe
width={700}
height={475}
src="https://diode.zone/videos/embed/3011ef6f-7684-4b74-81b2-37e20249bca2?api=1"
/>
<p>
<i>
<a href="https://nech.pl/glitchpool">GLITCHP00L</a>, a work in which a blue bar becomes the colorful frontier
of s1gnal and n0ise.{" "}
</i>
</p>
<br />
<Image
alt="GaLactic intermediary steps"
src="/images/WIP_GaLactic.png"
......@@ -35,24 +47,33 @@ export default function Hydra({hydras}) {
<p>
<i>
Successive layers within the work{" "}
<a href="https://nech.pl/nights-galactic">GaLactic</a>,
part of the serie <b>Nuits étoilées</b><br />in which I turn pictures of the night sky into animated windows on the universe.
<a href="https://nech.pl/nights-galactic">GaLactic</a>, part of the
serie <b>Nuits étoilées</b>
<br />
in which I turn pictures of the night sky into animated windows on
the universe.
</i>
</p>
<br />
<h4>
All my Hydra <a href="https://git.plnech.fr/pln/Hydra">code</a> is{" "}
<i>free software</i> : you are free to run it, study it, modify it or share it
as you like.
</h4>
<br />
<br />
<h2>Some works</h2>
<ul className={utilStyles.list}>
{hydras.map(
({
id,
title,
}) => (
{hydras.map(({ id, title }) => (
<li className={utilStyles.listItem} key={id}>
<Link href={`/hydra/${id}`}><h4> {title}</h4></Link>
<Link href={`/hydra/${id}`}>
<h4> {title}</h4>
</Link>
</li>
)
)}
))}
</ul>
</div>
</Layout>
......
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