Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@ import React from "react";
import {BrowserRouter as Router, Routes, Route } from "react-router-dom";
import LoginPage from "./pages/LoginPage";
import SignupPage from "./pages/SignupPage";
import VoiceTrainingPage from "./pages/VoiceTrainingPage";
import KeywordSelectionPage from "./pages/KeywordSelectionPage";
import FinalPage from "./pages/FinalPage";


function App() {
return (
<Router>
<Routes>
<Route path="/" element={<LoginPage/>}/>
<Route path="/signup" element={<SignupPage/>} />
<Route path="/voice-training" element={<VoiceTrainingPage/>} />
<Route path="/keywords" element={<KeywordSelectionPage/>} />
<Route path="/final" element={<FinalPage/>} />
</Routes>
</Router>
);
Expand Down
2 changes: 2 additions & 0 deletions src/constants/api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const LOCAL_SPRING_API_URL = "http://localhost:8080/api/spring";
export const LOCAL_FASTAPI_API_URL = "http://localhost:8000/api/fastapi";
8 changes: 8 additions & 0 deletions src/constants/recordScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// 사용자 로그인 시에 목소리 녹음 대본


const recordScript = `
부모님께서는 우리가 세상에서 가장 소중한 존재입니다. 그들의 사랑과 희생에 감사하며, 작은 일부터 시작해 효도하는 마음을 잊지 말고 살아가길 바랍니다. 언제나 부모님께 감사한 마음을 표현하세요.
`;

export default recordScript;