Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #9 from You-J/master
Browse files Browse the repository at this point in the history
working tree build #3
  • Loading branch information
softmarshmallow authored Oct 23, 2020
2 parents bc400dc + bb2c1ba commit b706107
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 43 deletions.
13 changes: 13 additions & 0 deletions sections/FeatureCloudsync/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,16 @@
margin: 0 auto;
text-align: center;
}

.title {
color: #fff;
font-weight: 900 !important;
line-height: 112px;
letter-spacing: 0.01em !important;
}

.sub_title {
color: #fff;
font-weight: 500 !important;
letter-spacing: 0em !important;
}
28 changes: 23 additions & 5 deletions sections/FeatureCloudsync/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,36 @@ import React from 'react';
import updateBtnWithPhone from '../../images/update_btn_with_phone.svg';
// @ts-ignore
import styles from './index.module.scss';
// @ts-ignore
import home from '../../styles/Home.module.css';
import { featureCloudSyncContents } from './toolkit';
import { Text } from '../../components';

const FeatureCloudSync = () => {
return (
<>
<div className={styles.container}>
<Text value={featureCloudSyncContents.title} />
<div className={home.inner_container}>
<Text
variant="h1"
className={styles.title}
value={featureCloudSyncContents.title()}
/>
</div>
<div className={styles.container} style={{ color: '#fff' }}>
<Text algin="left" value={featureCloudSyncContents.subTitleFirst} />
<Text algin="left" value={featureCloudSyncContents.subTitleSeconde} />
<div className={home.inner_container} style={{ color: '#fff' }}>
<Text
algin="left"
variant="h5"
className={styles.sub_title}
style={{ marginTop: '121px' }}
value={featureCloudSyncContents.subTitleFirst()}
/>
<Text
algin="left"
variant="h5"
className={styles.sub_title}
style={{ margin: '24px 0 79px 0x' }}
value={featureCloudSyncContents.subTitleSecond()}
/>
</div>
<div>
<img src={updateBtnWithPhone} />
Expand Down
2 changes: 1 addition & 1 deletion sections/FeatureCloudsync/toolkit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const featureCloudSyncContents = {
subTitleFirst: () => {
return <>Your design is</>;
},
subTitleSeconde: () => {
subTitleSecond: () => {
return (
<>
“Micro-manage your contents.” <br />
Expand Down
13 changes: 12 additions & 1 deletion sections/FeatureCodegen/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,22 @@
font-weight: 900 !important;
color: #fff;
font-size: 112px !important;
letter-spacing: 0.01em !important;
line-height: 100% !important;
}

.sub_title_box {
color: #fff;
margin-top: 140px;
margin-top: 143px;


.sub_title_second {
margin-top: 14px;
font-size: 36px !important;
font-weight: 500 !important;
line-height: 49px !important;
letter-spacing: 0.01em !important;
}
}

.link {
Expand Down
51 changes: 28 additions & 23 deletions sections/FeatureCodegen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,38 @@ import { featureCodegenContents } from './toolkit';

// @ts-ignore
import styles from './index.module.scss';
// @ts-ignore
import home from '../../styles/Home.module.css';

const FeatureCodegen = () => {
return (
<>
<div>
<Text
className={styles.title}
algin="left"
value={featureCodegenContents.title()}
/>
</div>
<div className={styles.sub_title_box}>
<Text
algin="left"
variant="h5"
value={featureCodegenContents.subTitleFirst()}
/>
<Text
algin="left"
variant="h5"
value={featureCodegenContents.subTitleSeconde()}
/>
</div>
<div className={styles.link}>
<Link href="/" style={{ color: '#463F95' }}>
<Text algin="left" variant="h5" value="Learn more how it works" />
</Link>
<div className={home.inner_container}>
<div>
<Text
className={styles.title}
algin="left"
value={featureCodegenContents.title()}
/>
</div>
<div className={styles.sub_title_box}>
<Text
algin="left"
variant="h5"
value={featureCodegenContents.subTitleFirst()}
/>
<Text
algin="left"
variant="h5"
className={styles.sub_title_second}
value={featureCodegenContents.subTitleSecond()}
/>
</div>
<div className={styles.link}>
<Link href="/" style={{ color: '#463F95' }}>
<Text algin="left" variant="h5" value="Learn more how it works" />
</Link>
</div>
</div>
</>
);
Expand Down
11 changes: 3 additions & 8 deletions sections/FeatureCodegen/toolkit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,16 @@ const endTag = '< /.';

export const featureCodegenContents = {
title: () => {
return (
<>
Code is - your <br />
prototype {endTag}
</>
);
return <>Code is - your prototype {endTag}</>;
},
subTitleFirst: () => {
return <>Finally, the usable code exporter</>;
},
subTitleSeconde: () => {
subTitleSecond: () => {
return (
<>
readable, production ready code. no custom <br />
implementaion. all in standard form.
implementation. all in standard form.
</>
);
},
Expand Down
2 changes: 1 addition & 1 deletion sections/FeatureEngine/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const FeatureEngine = () => {
</div>
<div className={styles.sub_title}>
<Text value={featureEngineContents.subTitleFirst()} />
<Text value={featureEngineContents.subTitleSeconde()} />
<Text value={featureEngineContents.subTitleSecond()} />
</div>
<div>
<Link href="/" style={{ color: '#463F95' }}>
Expand Down
2 changes: 1 addition & 1 deletion sections/FeatureEngine/toolkit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const featureEngineContents = {
</>
);
},
subTitleSeconde: () => {
subTitleSecond: () => {
return (
<>
With most advanced UI Context detection <br />
Expand Down
6 changes: 3 additions & 3 deletions sections/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import Header from './Header';
import Hero from './Hero';
import FeatureOverview from './FeatureOverview';
import FeatureCloudSync from './FeatureCloudSync';
import FeatureCloudSync from './FeatureCloudsync';
import FeatureCodegen from './FeatureCodegen';
import FeatureEngine from './FeatureEngine';
import FeatureLint from './FeatureLint'
import FeatureLint from './FeatureLint';

export {
Header,
Expand All @@ -13,5 +13,5 @@ export {
FeatureCloudSync,
FeatureCodegen,
FeatureEngine,
FeatureLint
FeatureLint,
};

0 comments on commit b706107

Please sign in to comment.