Added cocksox to work showcase.
This commit is contained in:
BIN
public/assets/images/work-showcase/cocksox.png
Normal file
BIN
public/assets/images/work-showcase/cocksox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 MiB |
@ -122,6 +122,26 @@ export default {
|
|||||||
</Fragment>
|
</Fragment>
|
||||||
); }
|
); }
|
||||||
},
|
},
|
||||||
|
"cocksox": {
|
||||||
|
"heading": "Cocksox",
|
||||||
|
"description": () => { return (
|
||||||
|
<Fragment>
|
||||||
|
<p>
|
||||||
|
Cocksox is a male fashion focused underwear company, with a sexy
|
||||||
|
product requiring an equally sexy site to boast its pride.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Requiring a strong and versitile mobile browsing experience, as
|
||||||
|
well as many fast and easy to use filtering systems to help
|
||||||
|
search through their range to find the perfect fit for each pair
|
||||||
|
of underpants. I built on Shopify while working at
|
||||||
|
<a target="_blank" href="//processcreative.com.au">
|
||||||
|
Process Creative
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</Fragment>
|
||||||
|
); }
|
||||||
|
},
|
||||||
"ozhair": {
|
"ozhair": {
|
||||||
"heading": "Oz Hair & Beauty",
|
"heading": "Oz Hair & Beauty",
|
||||||
"description": () => { return ( <Fragment>
|
"description": () => { return ( <Fragment>
|
||||||
|
@ -40,32 +40,35 @@ import Window95, {
|
|||||||
} from '@objects/window/Window95';
|
} from '@objects/window/Window95';
|
||||||
|
|
||||||
const ExistingWorkFrame = (props) => {
|
const ExistingWorkFrame = (props) => {
|
||||||
let fakeURL = props.href;
|
let {
|
||||||
if(!fakeURL.startsWith("http") && typeof window !== typeof undefined) {
|
fakeURL, href, title, src, fromRight, fromLeft, description, swap,
|
||||||
fakeURL = window.location.protocol + fakeURL;
|
} = props;
|
||||||
}
|
|
||||||
|
fakeURL = fakeURL || href;
|
||||||
|
|
||||||
|
if(!fakeURL.startsWith("http")) fakeURL = window.location.protocol+fakeURL;
|
||||||
|
|
||||||
let fakeWindow = (
|
let fakeWindow = (
|
||||||
<ElementScrollFader from={props.fromLeft}>
|
<ElementScrollFader from={swap?fromRight:fromLeft}>
|
||||||
<Window95>
|
<Window95>
|
||||||
<TitleBar buttons={[
|
<TitleBar buttons={[
|
||||||
<Minimize key="Minimize" disabled />,
|
<Minimize key="Minimize" disabled />,
|
||||||
<Close key="close" disabled />
|
<Close key="close" disabled />
|
||||||
]}>
|
]}>
|
||||||
{ props.title }
|
{ title }
|
||||||
</TitleBar>
|
</TitleBar>
|
||||||
|
|
||||||
<MenuBar>
|
<MenuBar>
|
||||||
<MenuOption title="File" disabled />
|
<MenuOption title="File" disabled />
|
||||||
<MenuOption title="Visit Page" href={ props.href } target="_blank" />
|
<MenuOption title="Visit Page" href={ href } target="_blank" />
|
||||||
</MenuBar>
|
</MenuBar>
|
||||||
|
|
||||||
<AddressBar href={fakeURL} />
|
<AddressBar href={fakeURL} />
|
||||||
<Frame>
|
<Frame>
|
||||||
<a href={ props.href} target="_blank" className="p-home-page__work-link">
|
<a href={ href} target="_blank" className="p-home-page__work-link">
|
||||||
<Image
|
<Image
|
||||||
src={props.src}
|
src={ src }
|
||||||
alt={props.title}
|
alt={ title }
|
||||||
loadable
|
loadable
|
||||||
className="p-home-page__work-link-image"
|
className="p-home-page__work-link-image"
|
||||||
maxWidth="600"
|
maxWidth="600"
|
||||||
@ -77,10 +80,10 @@ const ExistingWorkFrame = (props) => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let box = (
|
let box = (
|
||||||
<ElementScrollFader from={ props.fromRight } test={ props.test }>
|
<ElementScrollFader from={swap?fromLeft:fromRight }>
|
||||||
<ContentBox box>
|
<ContentBox box>
|
||||||
<Heading2>{ props.title }</Heading2>
|
<Heading2>{ title }</Heading2>
|
||||||
{ props.description }
|
{ description }
|
||||||
</ContentBox>
|
</ContentBox>
|
||||||
</ElementScrollFader>
|
</ElementScrollFader>
|
||||||
);
|
);
|
||||||
@ -96,20 +99,15 @@ const ExistingWorkFrame = (props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<SplitSection align="center">
|
<SplitSection align="center">
|
||||||
<Split padded>
|
<Split padded children={left} />
|
||||||
{ left }
|
<Split padded children={ right } />
|
||||||
</Split>
|
|
||||||
|
|
||||||
<Split padded>
|
|
||||||
{ right }
|
|
||||||
</Split>
|
|
||||||
</SplitSection>
|
</SplitSection>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export default (props) => {
|
export default props => {
|
||||||
return (
|
return (
|
||||||
<ImageSection
|
<ImageSection
|
||||||
className="p-home-page__promo p-home-page__promo-work"
|
className="p-home-page__promo p-home-page__promo-work"
|
||||||
@ -156,12 +154,22 @@ export default (props) => {
|
|||||||
description={ Language.get("pages.home.work.smai.description") }
|
description={ Language.get("pages.home.work.smai.description") }
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* Cocksox */}
|
||||||
|
<ExistingWorkFrame
|
||||||
|
href="//www.cocksox.com/"
|
||||||
|
fromLeft="bottom"
|
||||||
|
fromRight="top"
|
||||||
|
src={ require('@assets/images/work-showcase/cocksox.png') }
|
||||||
|
title={ Language.get("pages.home.work.cocksox.heading") }
|
||||||
|
description={ Language.get("pages.home.work.cocksox.description") }
|
||||||
|
/>
|
||||||
|
|
||||||
{/* Oz Hair and Beauty */}
|
{/* Oz Hair and Beauty */}
|
||||||
<ExistingWorkFrame
|
<ExistingWorkFrame
|
||||||
href="//www.ozhairandbeauty.com/"
|
href="//www.ozhairandbeauty.com/"
|
||||||
fromLeft="left"
|
fromLeft="left"
|
||||||
fromRight="left"
|
fromRight="left"
|
||||||
|
swap
|
||||||
src={ require('@assets/images/work-showcase/ozhair.png') }
|
src={ require('@assets/images/work-showcase/ozhair.png') }
|
||||||
title={ Language.get("pages.home.work.ozhair.heading") }
|
title={ Language.get("pages.home.work.ozhair.heading") }
|
||||||
description={ Language.get("pages.home.work.ozhair.description") }
|
description={ Language.get("pages.home.work.ozhair.description") }
|
||||||
|
Reference in New Issue
Block a user