Skip to content

Commit

Permalink
Revert "feat(client): 정산 수수료 페이지 마크업 (#375)"
Browse files Browse the repository at this point in the history
This reverts commit 266cbd8.
  • Loading branch information
hchayan committed Sep 29, 2021
1 parent 266cbd8 commit 0465c31
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 162 deletions.
3 changes: 0 additions & 3 deletions client/main/src/App.tsx
Expand Up @@ -26,7 +26,6 @@ import { useWindowResize } from './utils/useWindowResize';
import SettlementPage from './pages/Settlement/SettlementPage';
import SettlementRegisterPage from './pages/Settlement/Register/SettlementRegisterPage';
import MyPointPage from './pages/MyPoint/MyPointPage';
import FeeGuide from './pages/FeeGuide/FeeGuide';

export interface ParamTypes {
oauthProvider: OAuthProvider;
Expand Down Expand Up @@ -119,8 +118,6 @@ const App = () => {
<Route path="/refund/cert" component={RefundCertificationPage} />
<Route path="/refund/confirm" component={RefundConfirmPage} />

<Route path="/fee-guide" component={FeeGuide} />

<Redirect from="*" to="/" />
</Switch>
<Footer />
Expand Down
2 changes: 1 addition & 1 deletion client/main/src/components/Footer/Footer.styles.tsx
@@ -1,6 +1,6 @@
import styled from 'styled-components';

import { SIZE } from '../../constants/device';

import PALETTE from '../../constants/palette';

export const StyledFooter = styled.footer`
Expand Down
7 changes: 2 additions & 5 deletions client/main/src/components/Footer/Footer.tsx
Expand Up @@ -11,11 +11,8 @@ const Footer = () => {
</p>
<p>
[고객센터] 전화번호 070 - 8098 - 2158 | 이메일
<a href="mailto://thank.you.for.tyf@gmail.com"> thank.you.for.tyf@gmail.com</a>
&nbsp;|&nbsp;
<Anchor to="/refund">충전금액 환불</Anchor>
&nbsp;|&nbsp;
<Anchor to="/fee-guide">정산 수수료 안내</Anchor>
<a href="mailto://thank.you.for.tyf@gmail.com"> thank.you.for.tyf@gmail.com</a> |
<Anchor to="/refund"> 도네이션 환불하기</Anchor>
</p>
<p>© Thank You For ___ all rights reserved</p>
</StyledFooter>
Expand Down
47 changes: 0 additions & 47 deletions client/main/src/components/Help/HelpButton/HelpButton.styles.ts

This file was deleted.

13 changes: 0 additions & 13 deletions client/main/src/components/Help/HelpButton/HelpButton.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions client/main/src/pages/FeeGuide/FeeGuide.stories.tsx

This file was deleted.

32 changes: 0 additions & 32 deletions client/main/src/pages/FeeGuide/FeeGuide.styles.ts

This file was deleted.

42 changes: 0 additions & 42 deletions client/main/src/pages/FeeGuide/FeeGuide.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions client/main/src/pages/Main/Main.styles.ts
Expand Up @@ -6,10 +6,6 @@ import Logo from '../../components/@molecule/Logo/Logo';
import OutlineButton from '../../components/@molecule/OutlineButton/OutlineButton.styles';
import { DEVICE } from '../../constants/device';
import RightArrow from '../../assets/icons/right-arrow.svg';
import IconButton from '../../components/@atom/IconButton/IconButton';
import PALETTE from '../../constants/palette';
import { Z_INDEX } from '../../constants/style';
import { Link } from 'react-router-dom';

export const MainTemplate = styled(Template)`
padding: 5rem 0 6.25rem;
Expand Down
4 changes: 1 addition & 3 deletions client/main/src/pages/Main/MainPage.tsx
@@ -1,6 +1,6 @@
import { Suspense } from 'react';
import { ErrorBoundary } from 'react-error-boundary';
import { useHistory, Link } from 'react-router-dom';
import { useHistory } from 'react-router-dom';

import CreatorList from '../../components/Main/CreatorList/CreatorList';
import Spinner from '../../components/Spinner/Spinner';
Expand All @@ -18,7 +18,6 @@ import HeroContentDesktop from '../../assets/images/hero-content-desktop.svg';
import Logo from '../../components/@molecule/Logo/Logo';
import MainImage from '../../assets/images/hero-content.svg';
import Transition from '../../components/@atom/Transition/Transition.styles';
import HelpButton from '../../components/Help/HelpButton/HelpButton';

const MainPage = () => {
const history = useHistory();
Expand Down Expand Up @@ -66,7 +65,6 @@ const MainPage = () => {
</Transition>
</section>
)}
<HelpButton />
<DownIcon />
</MainTemplate>
);
Expand Down
2 changes: 0 additions & 2 deletions client/main/src/pages/Settlement/SettlementPage.tsx
@@ -1,7 +1,6 @@
import { Suspense, useEffect } from 'react';
import { useHistory } from 'react-router-dom';
import Transition from '../../components/@atom/Transition/Transition.styles';
import HelpButton from '../../components/Help/HelpButton/HelpButton';

import SettlementInfo from '../../components/Settlement/Info/SettlementInfo';
import SettlementRegisterForm from '../../components/Settlement/Register/SettlementRegisterForm';
Expand Down Expand Up @@ -40,7 +39,6 @@ const SettlementPage = () => {
<Settlement />
</Transition>
</Suspense>
<HelpButton />
</section>
</StyledTemplate>
);
Expand Down

0 comments on commit 0465c31

Please sign in to comment.