diff --git a/private/webpack/WebpackCompiler.js b/private/webpack/WebpackCompiler.js
index f9f48da..4cba82e 100644
--- a/private/webpack/WebpackCompiler.js
+++ b/private/webpack/WebpackCompiler.js
@@ -79,7 +79,8 @@ module.exports = (isDev) => {
'@assets': `${base}/public/assets`,
'@pages': `${base}/public/pages`,
'@common': `${base}/common`,
- '@styles': `${base}/public/styles`
+ '@styles': `${base}/public/styles`,
+ '@sections': `${base}/public/components/section`
}
},
diff --git a/public/assets/images/branding/csharp/logo.png b/public/assets/images/branding/csharp/logo.png
new file mode 100644
index 0000000..aa30538
Binary files /dev/null and b/public/assets/images/branding/csharp/logo.png differ
diff --git a/public/assets/images/branding/discord/logo.png b/public/assets/images/branding/discord/logo.png
new file mode 100644
index 0000000..bf008fd
Binary files /dev/null and b/public/assets/images/branding/discord/logo.png differ
diff --git a/public/assets/images/branding/google-cloud/logo.png b/public/assets/images/branding/google-cloud/logo.png
new file mode 100644
index 0000000..28adc62
Binary files /dev/null and b/public/assets/images/branding/google-cloud/logo.png differ
diff --git a/public/assets/images/branding/heroku/logo.png b/public/assets/images/branding/heroku/logo.png
new file mode 100644
index 0000000..757fa4b
Binary files /dev/null and b/public/assets/images/branding/heroku/logo.png differ
diff --git a/public/assets/images/branding/java/java-logo.svg b/public/assets/images/branding/java/java-logo.svg
index c85098c..28d4a95 100644
--- a/public/assets/images/branding/java/java-logo.svg
+++ b/public/assets/images/branding/java/java-logo.svg
@@ -1,5 +1,3 @@
-
-
); }
},
- "footer": "Want me for your next project?",
+ "footer": "Want to get in touch?",
"footerButton": "Contact Me"
}
},
@@ -213,6 +214,10 @@ export default {
"loading": {
"title": "Please Wait..."
+ },
+
+ "blog": {
+ "title": "Blog"
}
},
diff --git a/public/objects/content/box/FloatingContentBox.jsx b/public/objects/content/box/FloatingContentBox.jsx
index cdb51d6..a15321d 100644
--- a/public/objects/content/box/FloatingContentBox.jsx
+++ b/public/objects/content/box/FloatingContentBox.jsx
@@ -23,10 +23,10 @@
import React from 'react';
-import Styles from './FloatingContentBox.scss';
-
import ContentBox from './ContentBox';
+import Styles from './FloatingContentBox.scss';
+
export default (props) => {
let newProps = {...props};
let { position, size, children, className } = props;
diff --git a/public/objects/window/_window95.scss b/public/objects/window/_window95.scss
index c4a7516..71b74ba 100644
--- a/public/objects/window/_window95.scss
+++ b/public/objects/window/_window95.scss
@@ -218,8 +218,8 @@ $o-window--one-third: #{"33.333333333%"};//I needed greater accuracy than SCSS p
}
&__address-bar {
- @extend %t-flexbox;
- @include t-align-items(center);
+ display: flex;
+ align-items: center;
&-title {
display: block;
@@ -227,7 +227,7 @@ $o-window--one-third: #{"33.333333333%"};//I needed greater accuracy than SCSS p
}
&-frame {
- @include t-flex-basis(100%);
+ flex-basis: 100%;
}
}
diff --git a/public/pages/blog/BlogPage.jsx b/public/pages/blog/BlogPage.jsx
new file mode 100644
index 0000000..12d1a4a
--- /dev/null
+++ b/public/pages/blog/BlogPage.jsx
@@ -0,0 +1,46 @@
+// 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 { withLanguage } from '@public/language/Language';
+import Page, { PageBoundary } from '@components/page/Page';
+
+import FeaturedArticleSection from '@sections/blog/article/FeaturedArticleSection';
+
+const TestBlogData = {
+ handle: "test-blog",
+ title: "Test Blog Article",
+ shortDescription: "Read how the latest lorem ipsum is dolor sit amet for business owners."
+};
+
+export default withLanguage(props => {
+ let { lang } = props;
+
+ return (
+
+ {/* First (Featured) Blog */}
+
+
+ );
+});
diff --git a/public/pages/blog/BlogPage.scss b/public/pages/blog/BlogPage.scss
new file mode 100644
index 0000000..ccc7337
--- /dev/null
+++ b/public/pages/blog/BlogPage.scss
@@ -0,0 +1,7 @@
+/*
+ * Blog Page
+ * Styles for the Blog Landing Page
+ *
+ * Version:
+ * 1.0.0 - 2018/10/30
+ */
diff --git a/public/pages/home/HomePage.jsx b/public/pages/home/HomePage.jsx
index ce48f0b..9b7161d 100644
--- a/public/pages/home/HomePage.jsx
+++ b/public/pages/home/HomePage.jsx
@@ -22,8 +22,10 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react';
-import Page from '@components/page/Page';
+import Styles from './HomePage.scss';
+
+import Page from '@components/page/Page';
import BannerSection from './sections/BannerSection';
import PromoVideoSection from './sections/PromoVideoSection';
import ProgrammingSection from './sections/ProgrammingSection';
@@ -38,10 +40,6 @@ export default props => {
{ /* Banner */ }
- { /* Promo Video
-
- */ }
-
{/* Programming */}
diff --git a/public/styles/pages/_home-page.scss b/public/pages/home/HomePage.scss
similarity index 82%
rename from public/styles/pages/_home-page.scss
rename to public/pages/home/HomePage.scss
index c1691c6..35aa945 100644
--- a/public/styles/pages/_home-page.scss
+++ b/public/pages/home/HomePage.scss
@@ -4,17 +4,25 @@
*
* Dependencies:
* styles/settings/responsive.scss
- * styles/tools/_flex.scss
* styles/tools/_responsive.scss
*
* Version:
* 1.1.0 - 2018/08/14
*/
+@import '~@styles/global';
+
.p-home-page {
+ &__banner {
+ &-image {
+ object-fit: cover;
+
+ height: 80vh;
+ }
+ }
+
&__banner,
&__promo {
position: relative;
- //@extend %t-dp--shadow-3d;
}
&__promo {
@@ -22,15 +30,15 @@
background-size: 150% auto;
&-video {
- background-image: url($s-asset--directory+'images/patterns/florida.svg');
+ background-image: url('~@assets/images/patterns/florida.svg');
}
}
&__brands {
- @extend %t-flexbox;
- @include t-align-items(stretch);
- @include t-justify-content(space-between);
- @include t-flex-wrap(wrap);
+ display: flex;
+ align-items: stretch;
+ justify-content: space-between;
+ flex-wrap: wrap;
&-title {
}
diff --git a/public/pages/home/sections/BannerSection.jsx b/public/pages/home/sections/BannerSection.jsx
index 1c6b0fa..543992f 100644
--- a/public/pages/home/sections/BannerSection.jsx
+++ b/public/pages/home/sections/BannerSection.jsx
@@ -27,7 +27,6 @@ import { PageBoundary } from '@components/page/Page';
import { ImageSection } from '@components/section/Section';
import FloatingContentBox from '@objects/content/box/FloatingContentBox';
import { Title, Subtitle } from '@objects/typography/Typography';
-import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
export default withLanguage(props => {
@@ -36,6 +35,7 @@ export default withLanguage(props => {
return (
{
>
-
- { lang.pages.home.banner.title }
- { lang.pages.home.banner.subtitle }
-
+ { lang.pages.home.banner.title }
+ { lang.pages.home.banner.subtitle }
diff --git a/public/pages/home/sections/PlatformsSection.jsx b/public/pages/home/sections/PlatformsSection.jsx
index 4369b4b..ab7560b 100644
--- a/public/pages/home/sections/PlatformsSection.jsx
+++ b/public/pages/home/sections/PlatformsSection.jsx
@@ -32,13 +32,14 @@ import Video from '@objects/video/Video';
import { Title, Subtitle, Paragraph, Heading1 } from '@objects/typography/Typography';
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
-const Platform = (props) => {
+const Platform = props => {
+ let { src, to, title } = props;
let children;
- let image = ;
+ let image = ;
if(props.to) {
children = (
-
+
{ image }
);
@@ -47,13 +48,7 @@ const Platform = (props) => {
}
//Wrap in a div and a fader. Div is to help with random transitions on resizing.
- return (
-