diff --git a/pages/index.tsx b/pages/index.tsx
index 363e4134..d1041eea 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -1,3 +1,4 @@
+
import SEO from "../next-seo.config";
import {DefaultSeo} from "next-seo";
import Footer from '../src/components/global/Footer/Footer';
diff --git a/public/images/landing/landingcover.jpg b/public/images/landing/landingcover.jpg
new file mode 100644
index 00000000..f29f8a85
Binary files /dev/null and b/public/images/landing/landingcover.jpg differ
diff --git a/public/images/landing/landingcover2.jpg b/public/images/landing/landingcover2.jpg
new file mode 100644
index 00000000..a52c17ca
Binary files /dev/null and b/public/images/landing/landingcover2.jpg differ
diff --git a/public/images/landing/riverside-sample.jpg b/public/images/landing/riverside-sample.jpg
new file mode 100644
index 00000000..61a44316
Binary files /dev/null and b/public/images/landing/riverside-sample.jpg differ
diff --git a/src/components/global/Navigation/Navigation.tsx b/src/components/global/Navigation/Navigation.tsx
index ade7f9b2..ba5f0e49 100644
--- a/src/components/global/Navigation/Navigation.tsx
+++ b/src/components/global/Navigation/Navigation.tsx
@@ -17,7 +17,7 @@ export interface ListObject {
const identifyLink = (url: string) => url.indexOf(`${process.env.HOST}`);
const renderLink = (obj: ListObject, opts: object) => {
- const {url = undefined} = obj;
+ const { url = undefined } = obj;
return identifyLink(url ? url : '') !== -1 ?
{obj.label}
@@ -28,8 +28,8 @@ const renderLink = (obj: ListObject, opts: object) => {
};
const createListItem = (
- obj: ListObject,
- mobile = false,
+ obj: ListObject,
+ mobile = false,
) => {
const opts = {} as Options;
@@ -46,7 +46,7 @@ const createListItem = (
}
return (
-
@@ -76,15 +76,15 @@ const createListObject = ({
icon = false,
children = false,
target,
-}: ListObject) => ({label, url, icon, children, target});
+}: ListObject) => ({ label, url, icon, children, target });
function Navigation(): JSX.Element {
const navigation: Array