diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/Footer.js | 2 | ||||
| -rw-r--r-- | components/Header.js | 2 | ||||
| -rw-r--r-- | components/Layout.js | 2 | ||||
| -rw-r--r-- | components/Navbar.js | 11 |
4 files changed, 3 insertions, 14 deletions
diff --git a/components/Footer.js b/components/Footer.js index 2620fd5..4740b0a 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -21,7 +21,7 @@ const Footer = () => ( <div> <footer className="page-footer mt-5 font-small green"> <div className="footer-copyright text-center py-3"> - © Copyright 2016-2020, Alee Productions. Licensed with <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a>. + © Copyright 2017-2020, Alee Productions. Licensed with <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a>. View the <a href="/about#credits">credits</a> to see our stack. </div> </footer> diff --git a/components/Header.js b/components/Header.js index a4b1526..6ed6271 100644 --- a/components/Header.js +++ b/components/Header.js @@ -18,7 +18,7 @@ import Head from "next/head"; -const Header = () => ( +const Header = (page) => ( <Head> <meta charSet="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> diff --git a/components/Layout.js b/components/Layout.js index dfbc11c..2d49a1f 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -1,6 +1,6 @@ /* Alee Productions Website: Website for Alee Productions - Copyright (C) 2019 Alee + Copyright (C) 2020 Alee This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/components/Navbar.js b/components/Navbar.js index b48e294..4866460 100644 --- a/components/Navbar.js +++ b/components/Navbar.js @@ -38,12 +38,6 @@ const Navbar = () => ( <a className="nav-link" href="/tos">ToS</a> </li> <li className="nav-item"> - <a className="nav-link" href="https://forums.alee-productions.xyz">Forums</a> - </li> - <li className="nav-item"> - <a className="nav-link" href="https://git.alee-productions.xyz">Gitea</a> - </li> - <li className="nav-item"> <a className="nav-link" href="/blog">Blog</a> </li> <li className="nav-item"> @@ -78,11 +72,6 @@ const Navbar = () => ( </a> </li> </ul> - <ul className="navbar-nav"> - <li className="nav-item"> - <span className="navbar-text white-text">BETA</span> - </li> - </ul> </div> </nav> ); |
