Linted the whole project with eslint
This commit was merged in pull request #3.
This commit is contained in:
38
pages/404.js
38
pages/404.js
@@ -2,23 +2,23 @@ import { Hero } from "../components/blocks/hero";
|
||||
import { Layout } from "../components/layout";
|
||||
|
||||
export default function FourOhFour() {
|
||||
return (
|
||||
<Layout>
|
||||
<Hero
|
||||
data={{
|
||||
color: "default",
|
||||
headline: "404 – Page Not Found",
|
||||
text: "Oops! It seems there's nothing here, how embarrassing.",
|
||||
actions: [
|
||||
{
|
||||
label: "Return Home",
|
||||
type: "button",
|
||||
icon: true,
|
||||
link: "/",
|
||||
},
|
||||
],
|
||||
}}
|
||||
/>
|
||||
</Layout>
|
||||
);
|
||||
return (
|
||||
<Layout>
|
||||
<Hero
|
||||
data={ {
|
||||
color: "default",
|
||||
headline: "404 – Page Not Found",
|
||||
text: "Oops! It seems there's nothing here, how embarrassing.",
|
||||
actions: [
|
||||
{
|
||||
label: "Return Home",
|
||||
type: "button",
|
||||
icon: true,
|
||||
link: "/"
|
||||
}
|
||||
]
|
||||
} }
|
||||
/>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user