Adjust deep import logic
This commit is contained in:
28
public/input/Inputs.jsx
Normal file
28
public/input/Inputs.jsx
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// 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 Button from './button/Button';
|
||||||
|
|
||||||
|
export {
|
||||||
|
Button
|
||||||
|
};
|
@ -23,10 +23,10 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Page from './../Page';
|
import Page from './../Page';
|
||||||
import VideoSection from './../../section/video/VideoSection';
|
import { Section, VideoSection } from './../../section/Sections';
|
||||||
import Section from './../../section/Section';
|
|
||||||
import FloatingContentBox from './../../content/FloatingContentBox';
|
import FloatingContentBox from './../../content/FloatingContentBox';
|
||||||
import Button from './../../input/button/Button';
|
import { Button } from './../../input/Inputs';
|
||||||
|
import { Title, Subtitle } from './../../typography/Typography';
|
||||||
|
|
||||||
class Homepage extends React.Component {
|
class Homepage extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@ -37,9 +37,9 @@ class Homepage extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<Page style="home-page">
|
<Page style="home-page">
|
||||||
<VideoSection full>
|
<VideoSection full>
|
||||||
<FloatingContentBox position="middle right" size="medium" className="u-text-right">
|
<FloatingContentBox position="middle right" size="medium" className="u-text-center">
|
||||||
<h1>My Cool Page</h1>
|
<Title>My Cool Page</Title>
|
||||||
<p>Lorem ipsum dolor</p>
|
<Subtitle>Lorem ipsum dolor</Subtitle>
|
||||||
<Button>Hello</Button>
|
<Button>Hello</Button>
|
||||||
</FloatingContentBox>
|
</FloatingContentBox>
|
||||||
</VideoSection>
|
</VideoSection>
|
||||||
|
30
public/section/Sections.jsx
Normal file
30
public/section/Sections.jsx
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// 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 Section from './Section';
|
||||||
|
import VideoSection from './video/VideoSection';
|
||||||
|
|
||||||
|
export {
|
||||||
|
Section,
|
||||||
|
VideoSection
|
||||||
|
};
|
@ -54,6 +54,7 @@
|
|||||||
|
|
||||||
//Objects
|
//Objects
|
||||||
@import './objects/main.scss';
|
@import './objects/main.scss';
|
||||||
|
@import './objects/title.scss';
|
||||||
|
|
||||||
@import './objects/_app.scss';
|
@import './objects/_app.scss';
|
||||||
@import './objects/_button.scss';
|
@import './objects/_button.scss';
|
||||||
|
19
public/styles/objects/title.scss
Normal file
19
public/styles/objects/title.scss
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
* Title
|
||||||
|
* Title Headings
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.0 - 2018/05/11
|
||||||
|
*/
|
||||||
|
.o-title {
|
||||||
|
font-size: 3em;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
|
|
||||||
|
+ .o-subtitle {
|
||||||
|
margin-top: 0em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.o-subtitle {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
30
public/typography/Typography.jsx
Normal file
30
public/typography/Typography.jsx
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// 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 Title from './Title';
|
||||||
|
import Subtitle from './Subtitle';
|
||||||
|
|
||||||
|
export {
|
||||||
|
Title,
|
||||||
|
Subtitle
|
||||||
|
}
|
Reference in New Issue
Block a user