From 6ff9dfbaa43913d07bcfa393dcdfbaf0b07b8489 Mon Sep 17 00:00:00 2001 From: You-J Date: Sat, 24 Oct 2020 01:16:54 +0900 Subject: [PATCH 1/2] vercel ci build issue temporarily resolved by changing folder name. refer: https://github.com/vercel/next.js/issues/11697 refer: git case sensitive issue on macos --- sections/FeatureCloudsync/index.module.scss | 13 ++++++ sections/FeatureCloudsync/index.tsx | 28 +++++++++-- sections/FeatureCloudsync/toolkit.tsx | 2 +- sections/FeatureCodegen/index.module.scss | 13 +++++- sections/FeatureCodegen/index.tsx | 51 +++++++++++---------- sections/FeatureCodegen/toolkit.tsx | 11 ++--- sections/FeatureEngine/index.tsx | 2 +- sections/FeatureEngine/toolkit.tsx | 2 +- sections/index.ts | 6 +-- 9 files changed, 85 insertions(+), 43 deletions(-) diff --git a/sections/FeatureCloudsync/index.module.scss b/sections/FeatureCloudsync/index.module.scss index f89eea39..1f76ab0b 100644 --- a/sections/FeatureCloudsync/index.module.scss +++ b/sections/FeatureCloudsync/index.module.scss @@ -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; +} diff --git a/sections/FeatureCloudsync/index.tsx b/sections/FeatureCloudsync/index.tsx index c2482135..84a7a858 100644 --- a/sections/FeatureCloudsync/index.tsx +++ b/sections/FeatureCloudsync/index.tsx @@ -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 ( <> -
- +
+
-
- - +
+ +
diff --git a/sections/FeatureCloudsync/toolkit.tsx b/sections/FeatureCloudsync/toolkit.tsx index 186923ec..9ee22d31 100644 --- a/sections/FeatureCloudsync/toolkit.tsx +++ b/sections/FeatureCloudsync/toolkit.tsx @@ -12,7 +12,7 @@ export const featureCloudSyncContents = { subTitleFirst: () => { return <>Your design is; }, - subTitleSeconde: () => { + subTitleSecond: () => { return ( <> “Micro-manage your contents.”
diff --git a/sections/FeatureCodegen/index.module.scss b/sections/FeatureCodegen/index.module.scss index 645dfcbb..1c1fbfff 100644 --- a/sections/FeatureCodegen/index.module.scss +++ b/sections/FeatureCodegen/index.module.scss @@ -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 && .sub_title_first { + margin-top: 14px; + font-size: 36px !important; + font-weight: 500 !important; + line-height: 49px !important; + letter-spacing: 0.01em !important; + } } .link { diff --git a/sections/FeatureCodegen/index.tsx b/sections/FeatureCodegen/index.tsx index 4829d236..aab7905b 100644 --- a/sections/FeatureCodegen/index.tsx +++ b/sections/FeatureCodegen/index.tsx @@ -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 ( <> -
- -
-
- - -
-
- - - +
+
+ +
+
+ + +
+
+ + + +
); diff --git a/sections/FeatureCodegen/toolkit.tsx b/sections/FeatureCodegen/toolkit.tsx index da795f06..219abf84 100644 --- a/sections/FeatureCodegen/toolkit.tsx +++ b/sections/FeatureCodegen/toolkit.tsx @@ -2,21 +2,16 @@ const endTag = '< /.'; export const featureCodegenContents = { title: () => { - return ( - <> - Code is - your
- prototype {endTag} - - ); + return <>Code is - your prototype {endTag}; }, subTitleFirst: () => { return <>Finally, the usable code exporter; }, - subTitleSeconde: () => { + subTitleSecond: () => { return ( <> readable, production ready code. no custom
- implementaion. all in standard form. + implementation. all in standard form. ); }, diff --git a/sections/FeatureEngine/index.tsx b/sections/FeatureEngine/index.tsx index d8d6950d..9f232ea8 100644 --- a/sections/FeatureEngine/index.tsx +++ b/sections/FeatureEngine/index.tsx @@ -15,7 +15,7 @@ const FeatureEngine = () => {
- +
diff --git a/sections/FeatureEngine/toolkit.tsx b/sections/FeatureEngine/toolkit.tsx index 8899fe46..295f9708 100644 --- a/sections/FeatureEngine/toolkit.tsx +++ b/sections/FeatureEngine/toolkit.tsx @@ -18,7 +18,7 @@ export const featureEngineContents = { ); }, - subTitleSeconde: () => { + subTitleSecond: () => { return ( <> With most advanced UI Context detection
diff --git a/sections/index.ts b/sections/index.ts index 6ddf2ca1..5df1b484 100644 --- a/sections/index.ts +++ b/sections/index.ts @@ -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, @@ -13,5 +13,5 @@ export { FeatureCloudSync, FeatureCodegen, FeatureEngine, - FeatureLint + FeatureLint, }; From bb2c1ba7229d5991979ddd99d016caa061f34ad8 Mon Sep 17 00:00:00 2001 From: You-J Date: Sat, 24 Oct 2020 01:20:08 +0900 Subject: [PATCH 2/2] Fix issue in scss --- sections/FeatureCodegen/index.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/FeatureCodegen/index.module.scss b/sections/FeatureCodegen/index.module.scss index 1c1fbfff..01bb1340 100644 --- a/sections/FeatureCodegen/index.module.scss +++ b/sections/FeatureCodegen/index.module.scss @@ -11,7 +11,7 @@ margin-top: 143px; - .sub_title_second && .sub_title_first { + .sub_title_second { margin-top: 14px; font-size: 36px !important; font-weight: 500 !important;