hydra.js 797 Bytes
Newer Older
PLN (Algolia) committed
1 2 3
import Image from "next/image";
import Link from "next/link";
import Head from "next/head";
PLN (Algolia) committed
4
import Layout from "../components/layout";
PLN (Algolia) committed
5 6 7

export async function getStaticProps(context) {
  return {
PLN (Algolia) committed
8 9
    props: {},
  };
PLN (Algolia) committed
10 11
}

PLN (Algolia) committed
12 13
export default function Hydra() {
  return (
PLN (Algolia) committed
14
    <Layout>
PLN (Algolia) committed
15 16 17 18
      <Head>
      <meta name="viewport" content="width=device-width, initial-scale=1" />
      <title>PLN's Hydra works</title>
      </Head>
PLN (Algolia) committed
19 20 21
      <div>
        <h1>I create visuals with patterns</h1>
        <Image
PLN (Algolia) committed
22
          alt="GaLactic intermediary steps"
PLN (Algolia) committed
23
          src="/images/WIP_GaLactic.png"
PLN (Algolia) committed
24 25 26
          // layout="fill"
          width={700}
          height={475}
PLN (Algolia) committed
27
        />
PLN (Algolia) committed
28
        <p><i>Intermediary steps of <a href="https://nech.pl/nights-galactic">GaLactic</a></i></p>
PLN (Algolia) committed
29 30
      </div>
      </Layout>
PLN (Algolia) committed
31
  );
PLN (Algolia) committed
32
}