diff --git a/assets/css/.sass-cache/919f470006ee596fa9dda8379a1ca138e5dbbaa6/input.scssc b/assets/css/.sass-cache/919f470006ee596fa9dda8379a1ca138e5dbbaa6/input.scssc new file mode 100644 index 0000000..83ab5d4 Binary files /dev/null and b/assets/css/.sass-cache/919f470006ee596fa9dda8379a1ca138e5dbbaa6/input.scssc differ diff --git a/assets/css/index.css b/assets/css/index.css index e69de29..36f7107 100644 --- a/assets/css/index.css +++ b/assets/css/index.css @@ -0,0 +1 @@ +@import url(loginPage.css); \ No newline at end of file diff --git a/assets/css/input.scss b/assets/css/input.scss new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/loginPage.css b/assets/css/loginPage.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/output.css b/assets/css/output.css new file mode 100644 index 0000000..7fdb91e --- /dev/null +++ b/assets/css/output.css @@ -0,0 +1,3 @@ + + +/*# sourceMappingURL=output.css.map */ diff --git a/assets/css/output.css.map b/assets/css/output.css.map new file mode 100644 index 0000000..f088f66 --- /dev/null +++ b/assets/css/output.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "", +"sources": [], +"names": [], +"file": "output.css" +} \ No newline at end of file diff --git a/public/code.jpg b/public/code.jpg new file mode 100644 index 0000000..75a1fa4 Binary files /dev/null and b/public/code.jpg differ diff --git a/public/index.html b/public/index.html index 901d43a..8683265 100644 --- a/public/index.html +++ b/public/index.html @@ -1,75 +1,92 @@ - - Welcome to Codebash - - - + + +
- -

A real-time competitive coding experience

+
+

codeBash!

+

A real-time competitive coding experience

+ +
- +
- - + + + \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 9208e01..f5c7d7c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,34 +2,49 @@ const path = require('path') const webpack = require('webpack') module.exports = { - entry: path.resolve(__dirname, 'assets/js/index.js'), - output: { - filename: 'app.js', - path: path.resolve(__dirname, 'public') - }, - module: { - rules: [ - { - test: /\.js$/, - exclude: /(node_modules|bower_components)/, - use: { - loader: 'babel-loader', - options: { - presets: ['env'] - } - } - }, - { - test: /\.css$/, - loader: 'style-loader!css-loader' - } - ] - }, - plugins: [ - new webpack.ProvidePlugin({ - $: 'jquery', - jQuery: 'jquery' - }), - new webpack.optimize.UglifyJsPlugin() - ] -} + entry: path.resolve(__dirname, 'assets/js/index.js'), + output: { + filename: 'app.js', + path: path.resolve(__dirname, 'public') + }, + + module: { + rules: [{ + test: /\.js$/, + exclude: /(node_modules|bower_components)/, + use: { + loader: 'babel-loader', + options: { + presets: ['env'] + } + } + }] + }, + plugins: [ + new webpack.ProvidePlugin({ + $: 'jquery', + jQuery: 'jquery' + }), + new webpack.optimize.UglifyJsPlugin(), + entry: path.resolve(__dirname, 'assets/js/index.js'), + output: { + filename: 'app.js', + path: path.resolve(__dirname, 'public') + }, + module: { + rules: [{ + test: /\.js$/, + exclude: /(node_modules|bower_components)/, + use: { + loader: 'babel-loader', + options: { + presets: ['env'] + } + } + }, + { + test: /\.css$/, + loader: 'style-loader!css-loader' + } + ] + } \ No newline at end of file