Commit 3b9383ad by PLN (Algolia)

fix: Hydra

parent bc122b56
import Image from "next/image"; import Image from "next/image";
import Link from "next/link"; import Link from "next/link";
import Head from "next/head"; import Head from "next/head";
import Layout from "../components/layout";
export async function getStaticProps(context) { export async function getStaticProps(context) {
return { return {
...@@ -10,19 +11,22 @@ export async function getStaticProps(context) { ...@@ -10,19 +11,22 @@ export async function getStaticProps(context) {
export default function Hydra() { export default function Hydra() {
return ( return (
<>
<Head> <Head>
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PLN's Hydra works</title> <title>PLN's Hydra works</title>
</Head> </Head>
<div> <Layout>
<h1>I create visuals with patterns</h1> <div>
<Image <h1>I create visuals with patterns</h1>
alt="Mountains" <Image
src="/images/WIP_GaLactic.png" alt="Mountains"
layout="fill" src="/images/WIP_GaLactic.png"
// width={700} layout="fill"
// height={475} // width={700}
/> // height={475}
</div> />
</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