Moved About Page to homepage. Site is ready?

This commit is contained in:
2018-07-09 21:24:15 +10:00
parent 3275a4ebd3
commit 2d651160bd
18 changed files with 209 additions and 241 deletions

View File

@ -52,7 +52,6 @@ class Footer extends React.Component {
<nav className="c-footer__links"> <nav className="c-footer__links">
<FooterLink title="home" to="/" /> <FooterLink title="home" to="/" />
<FooterLink title="about" to="/about" />
<FooterLink title="contact" to="/contact" /> <FooterLink title="contact" to="/contact" />
<FooterLink title="privacy" to="/legal/privacy" /> <FooterLink title="privacy" to="/legal/privacy" />
</nav> </nav>

View File

@ -12,22 +12,19 @@ module.exports = {
"navbar": { "navbar": {
"home": "Home", "home": "Home",
"about": "About",
"contact": "Contact" "contact": "Contact"
}, },
"footer": { "footer": {
"links": { "links": {
"home": "Home", "home": "Home",
"about": "About Me",
"contact": "Contact Me", "contact": "Contact Me",
"privacy": "Privacy Policy" "privacy": "Privacy Policy"
} }
}, },
"pages": { "pages": {
"about": { "home": {
"title": "About Me",
"banner": { "banner": {
"title": "About Dominic Masters", "title": "About Dominic Masters",
"subtitle": "Developer, Nerd, Occasionally Funny." "subtitle": "Developer, Nerd, Occasionally Funny."

View File

@ -29,7 +29,7 @@ import * as MenuActions from './../../actions/MenuActions';
const HamburerMenuItem = function(props) { const HamburerMenuItem = function(props) {
return ( return (
<li className="c-hamburger-menu__link"> <li className={"c-hamburger-menu__link c-hamburger-menu__link--"+props.link}>
<NavLink to={ props.to } className="c-hamburger-menu__link-link"> <NavLink to={ props.to } className="c-hamburger-menu__link-link">
{ Language.get(props.lang) } { Language.get(props.lang) }
</NavLink> </NavLink>
@ -62,9 +62,8 @@ class HamburgerMenu extends React.Component {
<div className="c-hamburger-menu__menu"> <div className="c-hamburger-menu__menu">
<ul className="c-hamburger-menu__links"> <ul className="c-hamburger-menu__links">
<HamburerMenuItem to="/" lang="navbar.home" /> <HamburerMenuItem to="/" lang="navbar.home" link="home" />
<HamburerMenuItem to="/about" lang="navbar.about" /> <HamburerMenuItem to="/contact" lang="navbar.contact" link="contact" />
<HamburerMenuItem to="/contact" lang="navbar.contact" />
</ul> </ul>
</div> </div>
</div> </div>

View File

@ -60,7 +60,6 @@ class Navbar extends React.Component {
{/* Desktop / Tablet Screen Links */} {/* Desktop / Tablet Screen Links */}
<NavbarLink to="/" title="home" exact /> <NavbarLink to="/" title="home" exact />
<NavbarLink to="/about" title="about" />
<NavbarLink to="/contact" title="contact" exact /> <NavbarLink to="/contact" title="contact" exact />
{/* Hamburger Menu for smaller screens */} {/* Hamburger Menu for smaller screens */}

View File

@ -27,6 +27,7 @@ export default function(props) {
let clazzes = "c-page__boundary"; let clazzes = "c-page__boundary";
if(props.full) clazzes += " is-full"; if(props.full) clazzes += " is-full";
if(props.small) clazzes += " is-small"; if(props.small) clazzes += " is-small";
if(props.className) clazzes += " " + props.className;
return ( return (
<div className={ clazzes }> <div className={ clazzes }>

View File

@ -32,7 +32,6 @@ import Footer from './../footer/Footer';
//Pages //Pages
import Homepage from './home/Homepage'; import Homepage from './home/Homepage';
import AboutPage from './about/AboutPage';
import ContactPage from './contact/ContactPage'; import ContactPage from './contact/ContactPage';
import PrivacyPolicyPage from './legal/privacy/PrivacyPolicyPage'; import PrivacyPolicyPage from './legal/privacy/PrivacyPolicyPage';
@ -73,7 +72,6 @@ class Routes extends React.Component {
> >
<Switch location={ location }> <Switch location={ location }>
<RouteWrapper exact path="/" page={ Homepage } /> <RouteWrapper exact path="/" page={ Homepage } />
<RouteWrapper exact path="/about" page={ AboutPage } />
<RouteWrapper exact path="/contact" page={ ContactPage } /> <RouteWrapper exact path="/contact" page={ ContactPage } />
<RouteWrapper exact path="/legal/privacy" page={ PrivacyPolicyPage } /> <RouteWrapper exact path="/legal/privacy" page={ PrivacyPolicyPage } />

View File

@ -23,59 +23,43 @@
import React from 'react'; import React from 'react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { bindActionCreators } from 'redux'; import Page from './../Page';
import Page, { PageBoundary } from './../Page'; import Language from './../../language/Language'
import Section, { ImageSection } from './../../section/Section';
import FloatingContentBox from './../../content/FloatingContentBox';
import Image from './../../image/Image';
import { Title, Subtitle } from './../../typography/Typography';
import { Button } from './../../input/Input';
import { openModal } from './../../actions/ModalActions'; import BannerSection from './sections/BannerSection';
import Modal from './../../modal/Modal'; import PromoVideoSection from './sections/PromoVideoSection';
import ProgrammingSection from './sections/ProgrammingSection';
class Homepage extends React.Component { import PlatformsSection from './sections/PlatformsSection';
constructor(props) { import ExistingWorkSection from './sections/ExistingWorkSection';
super(props)
}
testModal() {
console.log("oof");
this.props.openModal(
<Modal close>
Hello Modal
</Modal>
);
}
render() {
let lines = [];
for(let i = 0; i < 20; i++) {
lines.push(<br key={i} />);
}
const HomePage = (props) => {
//Return
return ( return (
<Page style="home-page" title={0} className="p-home-page"> <Page style="home-page" className="p-home-page" title={0}>
Welcome home
{ lines } { /* Banner */ }
<Button onClick={this.testModal.bind(this)}> <BannerSection />
Test Modal
</Button> { /* Promo Video
<PromoVideoSection />
*/ }
{/* Programming */}
<ProgrammingSection />
{/* Platforms */}
<PlatformsSection />
{/* Existing Work */}
<ExistingWorkSection />
</Page> </Page>
); );
} }
}
const mapStateToProps = (state) => { const mapStateToProps = (state) => {
return { return {
modal: state.modal code: state.language.code
}; };
} }
const mapDispatchToProps = (dispatch) => { export default connect(mapStateToProps)(HomePage);
return bindActionCreators({
openModal: openModal
},dispatch);
}
export default connect(mapStateToProps, mapDispatchToProps)(Homepage);

View File

@ -39,8 +39,8 @@ export default (props) => {
<PageBoundary full> <PageBoundary full>
<FloatingContentBox position="middle center" size="large" className="u-text-center"> <FloatingContentBox position="middle center" size="large" className="u-text-center">
<ElementScrollFader from="bottom"> <ElementScrollFader from="bottom">
<Title>{ Language.get("pages.about.banner.title") }</Title> <Title>{ Language.get("pages.home.banner.title") }</Title>
<Subtitle className="u-responsive--small-up">{ Language.get("pages.about.banner.subtitle") }</Subtitle> <Subtitle className="u-responsive--small-up">{ Language.get("pages.home.banner.subtitle") }</Subtitle>
</ElementScrollFader> </ElementScrollFader>
</FloatingContentBox> </FloatingContentBox>
</PageBoundary> </PageBoundary>

View File

@ -62,11 +62,11 @@ const ExistingWorkFrame = (props) => {
<AddressBar href={fakeURL} /> <AddressBar href={fakeURL} />
<Frame> <Frame>
<a href={ props.href} target="_blank" className="p-about-page__work-link"> <a href={ props.href} target="_blank" className="p-home-page__work-link">
<Image <Image
src={props.src} src={props.src}
alt={props.title} alt={props.title}
className="p-about-page__work-link-image" className="p-home-page__work-link-image"
/> />
</a> </a>
</Frame> </Frame>
@ -109,16 +109,16 @@ const ExistingWorkFrame = (props) => {
export default (props) => { export default (props) => {
return ( return (
<Section className="p-about-page__promo p-about-page__promo-work"> <Section className="p-home-page__promo p-home-page__promo-work">
{/* Title */} {/* Title */}
<PageBoundary small> <PageBoundary small>
<ElementScrollFader from="left"> <ElementScrollFader from="left">
<ContentBox box> <ContentBox box>
<Heading1 className="u-text-center"> <Heading1 className="u-text-center">
{ Language.get("pages.about.work.heading") } { Language.get("pages.home.work.heading") }
</Heading1> </Heading1>
<Paragraph> <Paragraph>
{ Language.get("pages.about.work.paragraph") } { Language.get("pages.home.work.paragraph") }
</Paragraph> </Paragraph>
</ContentBox> </ContentBox>
</ElementScrollFader> </ElementScrollFader>
@ -133,8 +133,8 @@ export default (props) => {
fromLeft="top" fromLeft="top"
fromRight="bottom" fromRight="bottom"
src={ require('./../../../images/work-showcase/kopalife.png') } src={ require('./../../../images/work-showcase/kopalife.png') }
title={ Language.get("pages.about.work.kopa.heading") } title={ Language.get("pages.home.work.kopa.heading") }
description={ Language.get("pages.about.work.kopa.description") } description={ Language.get("pages.home.work.kopa.description") }
/> />
{/* SMAI */} {/* SMAI */}
@ -144,8 +144,8 @@ export default (props) => {
fromRight="right" fromRight="right"
swap swap
src={ require('./../../../images/work-showcase/smai.svg') } src={ require('./../../../images/work-showcase/smai.svg') }
title={ Language.get("pages.about.work.smai.heading") } title={ Language.get("pages.home.work.smai.heading") }
description={ Language.get("pages.about.work.smai.description") } description={ Language.get("pages.home.work.smai.description") }
/> />
{/* Oz Hair and Beauty */} {/* Oz Hair and Beauty */}
@ -155,8 +155,8 @@ export default (props) => {
fromRight="left" fromRight="left"
src={ require('./../../../images/work-showcase/ozhair.png') } src={ require('./../../../images/work-showcase/ozhair.png') }
title={ Language.get("pages.about.work.ozhair.heading") } title={ Language.get("pages.home.work.ozhair.heading") }
description={ Language.get("pages.about.work.ozhair.description") } description={ Language.get("pages.home.work.ozhair.description") }
/> />
</PageBoundary> </PageBoundary>
@ -165,9 +165,9 @@ export default (props) => {
<ElementScrollFader from="bottom"> <ElementScrollFader from="bottom">
<ContentBox box className="u-text-center"> <ContentBox box className="u-text-center">
<Subtitle>{ Language.get("pages.about.work.footer") }</Subtitle> <Subtitle>{ Language.get("pages.home.work.footer") }</Subtitle>
<Button size="large" to="/contact"> <Button size="large" to="/contact">
{ Language.get("pages.about.work.footer-button") } { Language.get("pages.home.work.footer-button") }
</Button> </Button>
</ContentBox> </ContentBox>
</ElementScrollFader> </ElementScrollFader>

View File

@ -34,11 +34,11 @@ import ElementScrollFader from './../../../animation/fade/ElementScrollFader';
const Platform = (props) => { const Platform = (props) => {
let children; let children;
let image = <Image src={props.src} className="p-about-page__brands-image" />; let image = <Image src={props.src} className="p-home-page__brands-image" />;
if(props.to) { if(props.to) {
children = ( children = (
<a href={props.to} target="_blank" className="p-about-page__brands-link"> <a href={props.to} target="_blank" className="p-home-page__brands-link">
{image} {image}
</a> </a>
); );
@ -47,7 +47,7 @@ const Platform = (props) => {
} }
return ( return (
<ElementScrollFader from={props.from} className="p-about-page__brands-brand"> <ElementScrollFader from={props.from} className="p-home-page__brands-brand">
{children} {children}
</ElementScrollFader> </ElementScrollFader>
); );
@ -55,15 +55,15 @@ const Platform = (props) => {
export default (props) => { export default (props) => {
return ( return (
<Section className="p-about-page__promo p-about-page__promo-platforms"> <Section className="p-home-page__promo p-home-page__promo-platforms">
<PageBoundary> <PageBoundary>
<ElementScrollFader from="left"> <ElementScrollFader from="left">
<Title className="u-text-center p-about-page__brands-title"> <Title className="u-text-center p-home-page__brands-title">
{ Language.get("pages.about.platforms.heading") } { Language.get("pages.home.platforms.heading") }
</Title> </Title>
</ElementScrollFader> </ElementScrollFader>
<div className="p-about-page__brands"> <div className="p-home-page__brands">
{/* Shopify */} {/* Shopify */}
<Platform <Platform
src={require('./../../../images/branding/shopify/shopify_glyph.svg')} src={require('./../../../images/branding/shopify/shopify_glyph.svg')}
@ -179,8 +179,8 @@ export default (props) => {
</div> </div>
<ElementScrollFader from="bottom"> <ElementScrollFader from="bottom">
<Subtitle className="u-text-center p-about-page__brands-title"> <Subtitle className="u-text-center p-home-page__brands-title">
{ Language.get("pages.about.platforms.footer") } { Language.get("pages.home.platforms.footer") }
</Subtitle> </Subtitle>
</ElementScrollFader> </ElementScrollFader>
</PageBoundary> </PageBoundary>

View File

@ -32,14 +32,14 @@ import ElementScrollFader from './../../../animation/fade/ElementScrollFader';
export default (props) => { export default (props) => {
return ( return (
<Section className="p-about-page__promo p-about-page__promo-programming"> <Section className="p-home-page__promo p-home-page__promo-programming">
<PageBoundary small> <PageBoundary small>
<ElementScrollFader from="bottom"> <ElementScrollFader from="bottom">
<ContentBox box> <ContentBox box>
<Heading1 className="u-text-center"> <Heading1 className="u-text-center">
{ Language.get("pages.about.programming.heading") } { Language.get("pages.home.programming.heading") }
</Heading1> </Heading1>
{ Language.get("pages.about.programming.paragraph") } { Language.get("pages.home.programming.paragraph") }
</ContentBox> </ContentBox>
</ElementScrollFader> </ElementScrollFader>
</PageBoundary> </PageBoundary>

View File

@ -34,7 +34,7 @@ import ElementScrollFader from './../../../animation/fade/ElementScrollFader';
export default (props) => { export default (props) => {
return ( return (
<Section className="p-about-page__promo p-about-page__promo-video"> <Section className="p-home-page__promo p-home-page__promo-video">
<PageBoundary> <PageBoundary>
<SplitSection align="center"> <SplitSection align="center">
@ -52,10 +52,10 @@ export default (props) => {
<ElementScrollFader from="bottom"> <ElementScrollFader from="bottom">
<ContentBox box> <ContentBox box>
<Title> <Title>
{ Language.get("pages.about.video.heading") } { Language.get("pages.home.video.heading") }
</Title> </Title>
<Paragraph> <Paragraph>
{ Language.get("pages.about.video.paragraph") } { Language.get("pages.home.video.paragraph") }
</Paragraph> </Paragraph>
</ContentBox> </ContentBox>
</ElementScrollFader> </ElementScrollFader>

View File

@ -41,17 +41,19 @@ export default class Section extends React.Component {
} }
} }
import ImageSection from './image/ImageSection';
import VideoSection from './video/VideoSection';
import BodySection from './body/BodySection'; import BodySection from './body/BodySection';
import ClearSection from './layout/ClearSection'; import ClearSection from './layout/ClearSection';
import FeaturedBlogSection from './blog/FeaturedBlogSection';
import ImageSection from './image/ImageSection';
import SplitSection, { Split } from './layout/SplitSection'; import SplitSection, { Split } from './layout/SplitSection';
import VideoSection from './video/VideoSection';
export { export {
ImageSection,
VideoSection,
BodySection, BodySection,
ClearSection, ClearSection,
FeaturedBlogSection,
ImageSection,
SplitSection, SplitSection,
Split Split,
VideoSection
} }

View File

@ -22,43 +22,45 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react'; import React from 'react';
import { connect } from 'react-redux'; import Section from './../Section';
import Page from './../Page'; import { PageBoundary } from './../../page/Page';
import Language from './../../language/Language'
import BannerSection from './sections/BannerSection'; const FeaturedArticle = function(props) {
import PromoVideoSection from './sections/PromoVideoSection'; let clazz = "c-featured-blog-section__article";
import ProgrammingSection from './sections/ProgrammingSection';
import PlatformsSection from './sections/PlatformsSection'; let internals;
import ExistingWorkSection from './sections/ExistingWorkSection'; internals = "test";
if(props.contain) {
internals = <PageBoundary>{internals}</PageBoundary>
clazz += " is-contained";
}
const AboutPage = (props) => {
//Return
return ( return (
<Page style="about-page" className="p-about-page" title={ Language.get("pages.about.title") }> <article className={ clazz }>
{ internals }
{ /* Banner */ } </article>
<BannerSection />
{ /* Promo Video */ }
<PromoVideoSection />
{/* Programming */}
<ProgrammingSection />
{/* Platforms */}
<PlatformsSection />
{/* Existing Work */}
<ExistingWorkSection />
</Page>
); );
} }
const mapStateToProps = (state) => { export default (props) => {
return { let firstArticle;
code: state.language.code let articles = [];
}; for(let i = 0; i < props.data.length; i++) {
let art = <FeaturedArticle data={props.data[i]} key={i} contain />
if(i === 0) {
firstArticle = art;
continue;
}
articles.push(art);
} }
export default connect(mapStateToProps)(AboutPage); return (
<Section className="c-featured-blog-section">
{ firstArticle }
<PageBoundary className="c-featured-blog-section__articles">
{ articles }
</PageBoundary>
</Section>
);
};

View File

@ -44,7 +44,7 @@ $c-hamburger-menu--pos-y: 0%;
&__links { &__links {
@extend %t-list-blank; @extend %t-list-blank;
padding: 1em; padding-top: 3em;
} }
&__link { &__link {
@ -53,12 +53,20 @@ $c-hamburger-menu--pos-y: 0%;
font-size: 1.25em; font-size: 1.25em;
width: 100%; width: 100%;
position: relative; position: relative;
border: 1px solid red; background-size: 150%;
&-link { &-link {
position: relative; position: relative;
display: block; display: block;
padding: 1.5em 0; padding: 1.5em;
}
&--home {
background-image: url('./../images/patterns/game-show.svg');
}
&--contact {
background-image: url('./../images/patterns/lemon-triangle.svg');
} }
&:hover:before { &:hover:before {

View File

@ -59,7 +59,6 @@
@import './elements/_headings.scss'; @import './elements/_headings.scss';
//Objects //Objects
@import './objects/_background.scss'; @import './objects/_background.scss';
@import './objects/_button.scss'; @import './objects/_button.scss';
@import './objects/_content-box.scss'; @import './objects/_content-box.scss';
@ -89,7 +88,6 @@
@import './components/_video-section.scss'; @import './components/_video-section.scss';
//Pages //Pages
@import './pages/_about-page.scss';
@import './pages/_contact-page.scss'; @import './pages/_contact-page.scss';
@import './pages/_home-page.scss'; @import './pages/_home-page.scss';
@import './pages/_privacy-policy-page.scss'; @import './pages/_privacy-policy-page.scss';

View File

@ -1,104 +0,0 @@
/*
* About Page
* Styles for the About Page, a simple page outlining some info about me.
*
* Dependencies:
* styles/settings/responsive.scss
* styles/tools/_flex.scss
* styles/tools/_responsive.scss
*
* Version:
* 1.0.0 - 2018/06/06
*/
.p-about-page {
&__promo {
padding: 6em 0;
background-size: 150% auto;
&-video {
background-image: url('./../images/patterns/florida.svg');
@extend %t-dp--shadow-3d;
}
&-programming {
background-image: url('./../images/patterns/rhythm-heaven.svg');
@extend %t-dp--shadow-3d;
}
&-platforms {
background-image: url('./../images/patterns/game-show.svg');
@extend %t-dp--shadow-3d;
}
&-work {
background-image: url('./../images/patterns/arcade.svg');
@extend %t-dp--shadow-3d;
}
}
&__brands {
@extend %t-flexbox;
@include t-align-items(stretch);
@include t-justify-content(space-between);
@include t-flex-wrap(wrap);
&-title {
}
&-brand {
width: 50%;
}
&-image {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
max-width: 5em;
max-height: 5em;
object-fit: contain;
object-position: center;
transition: all 0.2s $s-animation--ease-out;
}
&-link {
padding: 1em;
display: block;
height: 100%;
&:hover .p-about-page__brands-image {
@include t-rotate(10deg);
}
}
&-title { }
}
&__work-link,&__work-link-image {
display: block;
}
/* Media Queries */
@include t-media-query($s-xsmall-up) {
&__brands {
&-brand {
width: 25%;
}
}
}
@include t-media-query($s-small-up) {
&__brands {
&-link {
padding: 2em;
}
&-image {
max-width: 7em;
max-height: 6em;
}
}
}
}

View File

@ -1,19 +1,104 @@
/* /*
* Home Page * Home Page
* Styles that are homepage specific. * Styles for the Home Page, a simple page outlining some info about me.
* *
* Dependencies: * Dependencies:
* * styles/settings/responsive.scss
* styles/tools/_flex.scss
* styles/tools/_responsive.scss
* *
* Version: * Version:
* 1.0.0 - 2018/05/11 * 1.0.0 - 2018/06/06
*/ */
.p-home-page { .p-home-page {
&__video-content { &__promo {
padding: 1em 4em; padding: 6em 0;
background: rgba(0, 0, 0, 0.75); background-size: 150% auto;
color: white;
&-video {
background-image: url('./../images/patterns/florida.svg');
@extend %t-dp--shadow-3d;
}
&-programming {
background-image: url('./../images/patterns/rhythm-heaven.svg');
@extend %t-dp--shadow-3d;
}
&-platforms {
background-image: url('./../images/patterns/game-show.svg');
@extend %t-dp--shadow-3d;
}
&-work {
background-image: url('./../images/patterns/arcade.svg');
@extend %t-dp--shadow-3d;
}
}
&__brands {
@extend %t-flexbox;
@include t-align-items(stretch);
@include t-justify-content(space-between);
@include t-flex-wrap(wrap);
&-title {
}
&-brand {
width: 50%;
}
&-image {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
max-width: 5em;
max-height: 5em;
object-fit: contain;
object-position: center;
transition: all 0.2s $s-animation--ease-out;
}
&-link {
padding: 1em;
display: block;
height: 100%;
&:hover .p-about-page__brands-image {
@include t-rotate(10deg);
}
}
&-title { }
}
&__work-link,&__work-link-image {
display: block;
}
/* Media Queries */
@include t-media-query($s-xsmall-up) {
&__brands {
&-brand {
width: 25%;
}
}
}
@include t-media-query($s-small-up) {
&__brands {
&-link {
padding: 2em;
}
&-image {
max-width: 7em;
max-height: 6em;
}
}
} }
} }