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,10 +11,12 @@ export async function getStaticProps(context) { ...@@ -10,10 +11,12 @@ 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>
<Layout>
<div> <div>
<h1>I create visuals with patterns</h1> <h1>I create visuals with patterns</h1>
<Image <Image
...@@ -24,5 +27,6 @@ export default function Hydra() { ...@@ -24,5 +27,6 @@ export default function Hydra() {
// height={475} // 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