aboutsummaryrefslogtreecommitdiff
path: root/components/Layout.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2020-08-27 22:34:07 -0400
committerAndrew Lee <alee14498@gmail.com>2020-08-27 22:34:07 -0400
commit589e271352fc86c119096e503d799c1a656bbce2 (patch)
treebf4a31321d4472d0459571d7127f1f53b561c697 /components/Layout.js
parent4a365752ab71c00e61d02a364b60c5532fd01fca (diff)
downloadalp-website-589e271352fc86c119096e503d799c1a656bbce2.tar.gz
alp-website-589e271352fc86c119096e503d799c1a656bbce2.tar.bz2
alp-website-589e271352fc86c119096e503d799c1a656bbce2.zip
Removed a lot of things and announcement
Diffstat (limited to 'components/Layout.js')
-rw-r--r--components/Layout.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/Layout.js b/components/Layout.js
index 2d49a1f..107b1c2 100644
--- a/components/Layout.js
+++ b/components/Layout.js
@@ -17,18 +17,14 @@
*/
-import Navbar from "./Navbar";
import Header from "./Header";
import Scripts from "./Scripts";
-import Footer from "./Footer";
const Layout = (props) => (
<div>
<Header/>
- <Navbar/>
{props.children}
<Scripts/>
- <Footer/>
</div>
);