aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/Footer.js38
-rw-r--r--components/Header.js59
-rw-r--r--components/Layout.js31
-rw-r--r--components/Scripts.js32
4 files changed, 0 insertions, 160 deletions
diff --git a/components/Footer.js b/components/Footer.js
deleted file mode 100644
index 4740b0a..0000000
--- a/components/Footer.js
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- Alee Productions Website: Website for Alee Productions
- Copyright (C) 2019 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-*/
-
-const Footer = () => (
- <div>
- <footer className="page-footer mt-5 font-small green">
- <div className="footer-copyright text-center py-3">
- &copy; 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>
- <div className="alert alert-warning fixed-bottom m-0 alert-dismissible fade show" role="alert">
- Please note that this website is under active development and bugs may occur.<br/>If there are any, report it
- <a href="https://github.com/aleeproductions/website/issues"> here.</a>
- <button type="button" className="close" data-dismiss="alert" aria-label="Close">
- <span aria-hidden="true">&times;</span>
- </button>
- </div>
- </div>
-);
-
-export default Footer;
diff --git a/components/Header.js b/components/Header.js
deleted file mode 100644
index 6ed6271..0000000
--- a/components/Header.js
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- Alee Productions Website: Website for Alee Productions
- Copyright (C) 2019 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
-*/
-
-import Head from "next/head";
-
-const Header = (page) => (
- <Head>
- <meta charSet="UTF-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <meta httpEquiv="X-UA-Compatible" content="ie=edge"/>
- <meta name="description" content="We make games, videos and software."/>
-
- <link rel="apple-touch-icon" sizes="180x180" href="/assets/ico/apple-touch-icon.png"/>
- <link rel="icon" type="image/png" sizes="32x32" href="/assets/ico/favicon-32x32.png"/>
- <link rel="icon" type="image/png" sizes="16x16" href="/assets/ico/favicon-16x16.png"/>
- <link rel="manifest" href="/assets/ico/site.webmanifest"/>
- <link rel="mask-icon" href="/assets/ico/safari-pinned-tab.svg" color="#5bbad5"/>
- <link rel="shortcut icon" href="/assets/ico/favicon.ico"/>
- <meta name="msapplication-TileColor" content="#da532c"/>
- <meta name="msapplication-config" content="/assets/ico/browserconfig.xml"/>
- <meta name="theme-color" content="#ffffff"/>
-
- <script src="https://kit.fontawesome.com/4c90505fb4.js"></script>
-
- <link href="/assets/css/bootstrap.min.css" rel="stylesheet"/>
-
- <link href="/assets/css/mdb.min.css" rel="stylesheet"/>
-
- <link href="https://fonts.googleapis.com/css?family=Play:400,700&display=swap" rel="stylesheet"/>
-
- <link rel="stylesheet" href="/assets/css/animsition.min.css"/>
-
- <link rel="stylesheet" href="/assets/css/style.css"/>
-
- <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
-
- {/* Fix this part */}
-
- <title>Alee Productions</title>
-
- </Head>
-);
-
-export default Header; \ No newline at end of file
diff --git a/components/Layout.js b/components/Layout.js
deleted file mode 100644
index 107b1c2..0000000
--- a/components/Layout.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- Alee Productions Website: Website for Alee Productions
- 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-*/
-
-import Header from "./Header";
-import Scripts from "./Scripts";
-
-const Layout = (props) => (
- <div>
- <Header/>
- {props.children}
- <Scripts/>
- </div>
-);
-
-export default Layout; \ No newline at end of file
diff --git a/components/Scripts.js b/components/Scripts.js
deleted file mode 100644
index 036ebf4..0000000
--- a/components/Scripts.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- Alee Productions Website: Website for Alee Productions
- Copyright (C) 2019 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-*/
-
-const Scripts = () => (
- <div>
- <script type="text/javascript" src="/assets/js/jquery.min.js"/>
-
- <script type="text/javascript" src="/assets/js/popper.min.js"/>
-
- <script type="text/javascript" src="/assets/js/bootstrap.min.js"/>
-
- <script type="text/javascript" src="/assets/js/mdb.min.js"/>
- </div>
-);
-
-export default Scripts; \ No newline at end of file