Finalizing About Page Design
This commit is contained in:
BIN
public/images/test.png
Normal file
BIN
public/images/test.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 275 KiB |
@ -16,12 +16,7 @@ module.exports = {
|
|||||||
"about": {
|
"about": {
|
||||||
"banner": {
|
"banner": {
|
||||||
"title": "About Dominic Masters",
|
"title": "About Dominic Masters",
|
||||||
"subtitle": () => {
|
"subtitle": "Developer, Nerd, Occasionally Funny."
|
||||||
return LanguageTools.random([
|
|
||||||
"Developer, Nerd, Occasionally Funny.",
|
|
||||||
"Once forgot his own birthday."
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"video": {
|
"video": {
|
||||||
"heading": "Learn about me",
|
"heading": "Learn about me",
|
||||||
@ -107,19 +102,9 @@ module.exports = {
|
|||||||
given time.
|
given time.
|
||||||
</p>
|
</p>
|
||||||
</Fragment> ); }
|
</Fragment> ); }
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"admin": {
|
"footer": "Want me for your next project?",
|
||||||
"heading": "Systems Admin",
|
"footer-button": "Contact Me"
|
||||||
"paragraph": () => {
|
|
||||||
return (<Fragment>
|
|
||||||
<p>
|
|
||||||
Beyond programming knowledge, I also have extensive knowledge in
|
|
||||||
the field of systems administration, and while a little outdated,
|
|
||||||
I can still solve most systems issues.
|
|
||||||
</p>
|
|
||||||
</Fragment>);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ import { PageBoundary } from './../../Page';
|
|||||||
import Section, { SplitSection, Split, ClearSection } from './../../../section/Section';
|
import Section, { SplitSection, Split, ClearSection } from './../../../section/Section';
|
||||||
import ContentBox from './../../../content/ContentBox';
|
import ContentBox from './../../../content/ContentBox';
|
||||||
import { Title, Subtitle, Paragraph, Heading1, Heading2 } from './../../../typography/Typography';
|
import { Title, Subtitle, Paragraph, Heading1, Heading2 } from './../../../typography/Typography';
|
||||||
|
import { Button } from './../../../input/Input';
|
||||||
import ElementScrollFader from './../../../animation/fade/ElementScrollFader';
|
import ElementScrollFader from './../../../animation/fade/ElementScrollFader';
|
||||||
import Image from './../../../image/Image';
|
import Image from './../../../image/Image';
|
||||||
|
|
||||||
@ -158,6 +159,21 @@ export default (props) => {
|
|||||||
description={ Language.get("pages.about.work.ozhair.description") }
|
description={ Language.get("pages.about.work.ozhair.description") }
|
||||||
/>
|
/>
|
||||||
</PageBoundary>
|
</PageBoundary>
|
||||||
|
|
||||||
|
<PageBoundary small>
|
||||||
|
<ClearSection />{/* Space a bit */}
|
||||||
|
|
||||||
|
<ElementScrollFader from="bottom">
|
||||||
|
<ContentBox box className="u-text-center">
|
||||||
|
<Subtitle>{ Language.get("pages.about.work.footer") }</Subtitle>
|
||||||
|
<Button size="large" to="/contact">
|
||||||
|
{ Language.get("pages.about.work.footer-button") }
|
||||||
|
</Button>
|
||||||
|
</ContentBox>
|
||||||
|
</ElementScrollFader>
|
||||||
|
|
||||||
|
<ClearSection />{/* Space a bit */}
|
||||||
|
</PageBoundary>
|
||||||
</Section>
|
</Section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Page, { PageBoundary } from './../Page';
|
import Page, { PageBoundary } from './../Page';
|
||||||
import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/input';
|
import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/Input';
|
||||||
import Language from './../../language/Language';
|
import Language from './../../language/Language';
|
||||||
import ElementScrollFader from './../../animation/fade/ElementScrollFader';
|
import ElementScrollFader from './../../animation/fade/ElementScrollFader';
|
||||||
import Section, {
|
import Section, {
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
* 1.0.0 - 2018/06/06
|
* 1.0.0 - 2018/06/06
|
||||||
*/
|
*/
|
||||||
.p-about-page {
|
.p-about-page {
|
||||||
background-color: #F7EFE2;
|
background-image: url('./../images/patterns/game-show.svg');
|
||||||
|
background-size: 150% auto;
|
||||||
|
|
||||||
&__promo {
|
&__promo {
|
||||||
padding: 6em 0;
|
padding: 6em 0;
|
||||||
|
Reference in New Issue
Block a user