Skip to content

Commit

Permalink
Merge branch 'develop' into feature/#109
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongmin59 authored Apr 4, 2024
2 parents abd8e30 + b2a82a3 commit 1b60088
Show file tree
Hide file tree
Showing 45 changed files with 1,920 additions and 755 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/deploy-production.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: lint check

on: pull_request

jobs:
eslint-test:
name: eslint test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.18.0'
- run: npm install
- run: npm run lint
15 changes: 15 additions & 0 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: type check

on: pull_request

jobs:
type-test:
name: type test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.18.0'
- run: npm install
- run: npm run typecheck
Empty file modified .husky/pre-commit
100755 → 100644
Empty file.
5 changes: 4 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ import CreateRetroPage from '@/pages/CreateRetroPage';
import HomePage from '@/pages/HomePage';
import MyPage from '@/pages/MyPage';
import SurveyPage from '@/pages/SurveyPage';
import WriteRetroTeamPage from '@/pages/WriteRetroTeamPage';
import { WriteRetroPersonalPage } from '@/pages/WriteRetroPersonalPage';
import { WriteRetroRevisePersonalPage } from '@/pages/WriteRetroRevisePersonalPage';
import { WriteRetroReviseTeamPage } from '@/pages/WriteRetroReviseTeamPage';
import { WriteRetroTeamPage } from '@/pages/WriteRetroTeamPage';

interface PrivateRouteProps {
children: ReactElement;
Expand Down
30 changes: 16 additions & 14 deletions src/components/home/MainDesign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,35 @@ import * as L from '@/styles/layout/layout.style';

const MainDesign = () => {
return (
<S.TopTriangleContainer>
<>
<S.TopTriangleContainer>
<S.TopText>
개인회고와 팀 회고 템플릿을 동시에 제공하는 회괴 웹페이지입니다. <br />
우리는 개인과 팀이 모두 발전할 수 있도록, <br />
과거의 경험을 효과적으로 되새기고 배우는 것을 지원합니다.
</S.TopText>
<S.BottomText>
과거를 회고하며 미래로 나아가는 과정을 촉진하는 의미를 가진 이름으로 <br />
&apos; Past&apos; (과거)와 &apos;Forward &apos;(앞으로 나아가다)를 결합하여 비전을 표현합니다.
</S.BottomText>
</S.TopTriangleContainer>
<S.BrandContainer>
<img src={logo} style={{ marginTop: '150px', marginLeft: '80px', width: '300px', zIndex: '999' }} />
<img src={logo} style={{ paddingLeft: '80px', width: '300px' }} />
<S.BrandTextBox>
<S.BrandSmallText style={{ marginLeft: '30%' }}>Moving</S.BrandSmallText>
<S.BrandSmallText style={{ paddingLeft: '20%' }}>Moving</S.BrandSmallText>
<L.LogoText color="white" style={{ fontSize: '70px' }}>
Forward
</L.LogoText>
</S.BrandTextBox>
<S.BrandTextBox>
<S.BrandSmallText style={{ marginLeft: '45%' }}>From the</S.BrandSmallText>
<S.BrandSmallText style={{ paddingLeft: '45%' }}>From the</S.BrandSmallText>
<L.LogoText color="white" style={{ fontSize: '70px' }}>
Past
</L.LogoText>
</S.BrandTextBox>
<S.StartedFreeButton>Get Started for Free</S.StartedFreeButton>
</S.BrandContainer>
<S.TopText style={{ marginLeft: '70%' }}>
개인회고와 팀 회고 템플릿을 동시에 제공하는 회괴 웹페이지입니다. <br />
우리는 개인과 팀이 모두 발전할 수 있도록, <br />
과거의 경험을 효과적으로 되새기고 배우는 것을 지원합니다.
</S.TopText>
<S.BottomText>
과거를 회고하며 미래로 나아가는 과정을 촉진하는 의미를 가진 이름으로 <br />
&apos; Past&apos; (과거)와 &apos;Forward &apos;(앞으로 나아가다)를 결합하여 비전을 표현합니다.
</S.BottomText>
</S.TopTriangleContainer>
</>
);
};

Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/parts/LogoBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import Logo from '@/../public/logo.svg';
import * as S from '@/styles/layout/layout.style';
const LogoBox = () => {
return (
<S.LogoBox>
<>
<S.LogoText color="brand" href="/#">
<img src={Logo} />
Past Forward
</S.LogoText>
</S.LogoBox>
</>
);
};

Expand Down
23 changes: 0 additions & 23 deletions src/components/writeRetro/AddTaskButton.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions src/components/writeRetro/CheckPopUp.tsx

This file was deleted.

38 changes: 0 additions & 38 deletions src/components/writeRetro/Frame.tsx

This file was deleted.

26 changes: 0 additions & 26 deletions src/components/writeRetro/Label.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions src/components/writeRetro/Message.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions src/components/writeRetro/SaveButton.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions src/components/writeRetro/SubTask.tsx

This file was deleted.

15 changes: 0 additions & 15 deletions src/components/writeRetro/SubTitle.tsx

This file was deleted.

49 changes: 0 additions & 49 deletions src/components/writeRetro/Task.tsx

This file was deleted.

24 changes: 0 additions & 24 deletions src/components/writeRetro/TaskMessage.tsx

This file was deleted.

Loading

0 comments on commit 1b60088

Please sign in to comment.