Skip to content

Commit

Permalink
Merge pull request #71 from KUSITMS-29th-TEAM-D/develop
Browse files Browse the repository at this point in the history
[HOTFIX] QA 반영 및 라우팅 수정
  • Loading branch information
AAminha authored May 23, 2024
2 parents 08179f2 + 9564b9f commit 993eb51
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 374 deletions.
16 changes: 11 additions & 5 deletions src/components/common/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ import styled from 'styled-components';
import { ReactComponent as Logo } from '@/assets/logos/mainLogo.svg';

const MENU_LIST = [
{ title: '새로운 경험 키워드 추천하기', path: '' },
{ title: '팀 쿨피스 테크블로그', path: '' },
{ title: '경험 콘텐츠 등록 문의하기', path: '' },
{ title: '서비스 문의하기', path: '' },
{ title: '개인정보 처리방침', path: '' },
{
title: '새로운 경험 키워드 추천하기',
path: 'https://docs.google.com/forms/d/e/1FAIpQLSfAjfBz-HBTPFobfKdilHI2j9ZQIiLg8g9bTHLx28ajjNsGcg/viewform?usp=send_form',
},
{ title: '팀 쿨피스 테크블로그', path: 'https://velog.io/@kusitms-29th-d/posts' },
{ title: '프로그램 등록 문의하기', path: '' },
{ title: '서비스 문의하기', path: 'https://pf.kakao.com/_xjMdLG' },
{
title: '개인정보 처리방침',
path: 'https://docs.google.com/document/d/1lnzEB1apJ0X6Vxpse3O-kP9-DD3eImJZx9FEkM6uXgg/edit',
},
];

export const Footer = () => {
Expand Down
4 changes: 3 additions & 1 deletion src/routers/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
DesignTestPage4,
DesignTestPage5,
} from '@/pages/DesignTestPage';
import { DiscoverStartPage } from '@/pages/DiscoverStartPage';
import { DiscoverTestPage } from '@/pages/DiscoverTestPage';
import { ExperienceDetailPage } from '@/pages/ExperienceDetailPage';
import { ExperienceRecommendPage } from '@/pages/ExperienceRecommendPage';
Expand Down Expand Up @@ -62,7 +63,8 @@ export const Router = () => {
</Route>
</Route>
<Route path="discover" element={<TestLayout />}>
<Route path="" element={<DiscoverTestPage />} />
<Route path="" element={<DiscoverStartPage />} />
<Route path="start" element={<DiscoverTestPage />} />
</Route>
</Route>
<Route path="/login" element={<RedirectPage />} />
Expand Down
Loading

0 comments on commit 993eb51

Please sign in to comment.