Skip to content

Commit 5bbb090

Browse files
committed
feat: 개인정보처리방침과 서비스이용약관 페이지 추가
1 parent a227044 commit 5bbb090

File tree

4 files changed

+995
-13
lines changed

4 files changed

+995
-13
lines changed

src/App.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import SubscriptionModal from "./components/common/SubscriptionModal";
1313
import { ModalProvider } from "./contexts/ModalContext";
1414
import ModalManager from "./components/common/ModalManager";
1515
import NotFoundPage from "./components/common/NotFoundPage";
16+
import PrivacyPolicy from "./components/PrivacyPolicy";
17+
import TermsOfService from "./components/TermsOfService";
1618
import "./App.css";
1719
import ProfileSection from "./components/sections/ProfileSection";
1820

@@ -56,6 +58,8 @@ function App() {
5658
element={<SubscriptionEditSection />}
5759
/>
5860
<Route path="/profile" element={<ProfileSection />} />
61+
<Route path="/privacy-policy" element={<PrivacyPolicy />} />
62+
<Route path="/terms-of-service" element={<TermsOfService />} />
5963
<Route path="*" element={<NotFoundPage />} />
6064
</Routes>
6165
<Footer />

0 commit comments

Comments
 (0)