diff --git a/package.json b/package.json
index 45871e6..b50525d 100644
--- a/package.json
+++ b/package.json
@@ -4,6 +4,7 @@
"description": "Personal website for Dominic \"YouWish\" Masters.",
"main": "private/index.js",
"scripts": {
+ "serve": "webpack-serve --config ./webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
@@ -23,7 +24,25 @@
},
"homepage": "https://github.com/YourWishes/domsPlaceNew#readme",
"dependencies": {
+ "babel-polyfill": "^6.26.0",
+ "react": "^16.3.2",
+ "react-dom": "^16.3.2",
+ "react-tap-event-plugin": "^3.0.2"
},
"devDependencies": {
+ "babel-core": "^6.26.3",
+ "babel-loader": "^7.1.4",
+ "babel-preset-env": "^1.6.1",
+ "babel-preset-react": "^6.24.1",
+ "css-loader": "^0.28.11",
+ "file-loader": "^1.1.11",
+ "html-webpack-plugin": "^3.2.0",
+ "node-sass": "^4.9.0",
+ "react-hot-loader": "^4.1.2",
+ "sass-loader": "^7.0.1",
+ "style-loader": "^0.21.0",
+ "url-loader": "^1.0.1",
+ "webpack": "^3.11.0",
+ "webpack-dev-server": "^2.9.1"
}
}
diff --git a/public/App.jsx b/public/App.jsx
new file mode 100644
index 0000000..5875483
--- /dev/null
+++ b/public/App.jsx
@@ -0,0 +1,48 @@
+// Copyright (c) 2018 Dominic Masters
+//
+// MIT License
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+import React from 'react';
+import Navbar from './nav/navbar/Navbar';
+
+//Pages
+import KitchenSinkPage from './page/test/KitchenSinkPage';
+import Homepage from './page/home/Homepage';
+
+class App extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ return (
+
+
+
diff --git a/public/index.jsx b/public/index.jsx
new file mode 100644
index 0000000..9b47e9d
--- /dev/null
+++ b/public/index.jsx
@@ -0,0 +1,36 @@
+// Copyright (c) 2018 Dominic Masters
+//
+// MIT License
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+'use strict';
+
+import React from 'react';
+import ReactDOM from 'react-dom';
+
+import App from './App';
+
+import Styles from './styles/index';
+
+ReactDOM.render(
+ ,
+ document.getElementById('app')
+);
diff --git a/public/nav/navbar/Navbar.jsx b/public/nav/navbar/Navbar.jsx
new file mode 100644
index 0000000..a8912b6
--- /dev/null
+++ b/public/nav/navbar/Navbar.jsx
@@ -0,0 +1,62 @@
+// Copyright (c) 2018 Dominic Masters
+//
+// MIT License
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+import React from 'react';
+
+class Navbar extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ return (
+
+
+
+ );
+ }
+}
+
+export default Navbar;
diff --git a/public/page/Page.jsx b/public/page/Page.jsx
new file mode 100644
index 0000000..27dd3e0
--- /dev/null
+++ b/public/page/Page.jsx
@@ -0,0 +1,40 @@
+// Copyright (c) 2018 Dominic Masters
+//
+// MIT License
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+import React from 'react';
+
+class Page extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ return (
+
+ { this.props.children }
+
+ );
+ }
+}
+
+export default Page;
diff --git a/public/page/home/Homepage.jsx b/public/page/home/Homepage.jsx
new file mode 100644
index 0000000..85b1959
--- /dev/null
+++ b/public/page/home/Homepage.jsx
@@ -0,0 +1,41 @@
+// Copyright (c) 2018 Dominic Masters
+//
+// MIT License
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+import React from 'react';
+import Page from './../Page';
+
+class Homepage extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ return (
+
+ Homepage
+
+ );
+ }
+}
+
+export default Homepage;
diff --git a/public/page/test/KitchenSinkPage.jsx b/public/page/test/KitchenSinkPage.jsx
new file mode 100644
index 0000000..52d3a39
--- /dev/null
+++ b/public/page/test/KitchenSinkPage.jsx
@@ -0,0 +1,153 @@
+import React from 'react';
+
+import Page from './../Page';
+
+class KitchenSinkPage extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ return (
+
+
This is the primary heading and there should only be one of these per page
+
A small paragraph to emphasis and show important bits.
+
+
This is a list item
+
So is this - there could be more
+
Make sure to style list items to:
+
+
Not forgetting child list items
+
Not forgetting child list items
+
Not forgetting child list items
+
Not forgetting child list items
+
+
A couple more
+
top level list items
+
+
Don't forget Ordered lists:
+
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
Aliquam tincidunt mauris eu risus.
+
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
Aliquam tincidunt mauris eu risus.
+
+
+
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
Aliquam tincidunt mauris eu risus.
+
+
+
A sub heading which is not as important as the first, but is quite imporant overall
+
+ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
+
+
+
+
+ Most Downloaded Movies on BitTorrent, 2011
+
+
+
+
Rank
+
Movie
+
Downloads
+
Grosses
+
+
+
+
+
torrentfreak.com
+
+
+
+
+
1
+
Fast Five
+
9,260,000
+
$626,137,675
+
+
+
2
+
The Hangover II
+
8,840,000
+
$581,464,305
+
+
+
3
+
Thor
+
8,330,000
+
$449,326,618
+
+
+
4
+
Source Code
+
7,910,000
+
$123,278,618
+
+
+
5
+
I Am Number Four
+
7,670,000
+
$144,500,437
+
+
+
6
+
Sucker Punch
+
7,200,000
+
$89,792,502
+
+
+
7
+
127 Hours
+
6,910,000
+
$60,738,797
+
+
+
8
+
Rango
+
6,480,000
+
$245,155,348
+
+
+
9
+
The King’s Speech
+
6,250,000
+
$414,211,549
+
+
+
10
+
Harry Potter and the Deathly Hallows Part 2
+
6,030,000
+
$1,328,111,219
+
+
+
+
+
A sub heading which is not as important as the second, but should be used with consideration
+
+ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
+
+
+
+
This is a properly formatted blockquote, btw. Measuring programming progress by lines of code is like measuring aircraft building progress by weight.
+
+
+
+
A sub heading which is not as important as the second, but should be used with consideration
+
+ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
+
+
+
+ “Ooh - a blockquote! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.”
+