Skip to content

Commit

Permalink
Implement "Landing" root/index page component
Browse files Browse the repository at this point in the history
This commit is the initial implementation and renders an self-closing
"Root" component.

GH-36
  • Loading branch information
arcticicestudio committed Nov 20, 2018
1 parent 2522938 commit 26b91ba
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
* Copyright (C) 2018-present Sven Greb <[email protected]>
*
* Project: Nord Docs
* Repository: https://github.com/arcticicestudio/nord-docs
* License: MIT
*/
import React from "react";

import Root from "containers/core/Root";

/**
* The landing page component representing the root/index of the site.
*
* @author Arctic Ice Studio <[email protected]>
* @author Sven Greb <[email protected]>
* @since 0.1.0
*/
const Landing = () => <Root />;

export default Landing;

0 comments on commit 26b91ba

Please sign in to comment.