Skip to content
Open
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
74 changes: 42 additions & 32 deletions frontend/pronunciationAppFront/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/pronunciationAppFront/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^6.4.0",
"@mui/icons-material": "^6.4.3",
"@mui/material": "^6.4.0",
"axios": "^1.7.9",
"react": "^18.3.1",
Expand Down
22 changes: 10 additions & 12 deletions frontend/pronunciationAppFront/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
import { BrowserRouter, Route, Routes } from "react-router-dom";
import About from './About';
import './App.css';
import Home from './Home.jsx';
import Layout from './Layout';
import NoPage from './NoPage';
import Practice from './Practice';

import About from "./pages/About.jsx";
import "./styles/App.css";
import Home from "./pages/Home.jsx";
import Layout from "./layout/Layout.jsx";
import NoPage from "./pages/NoPage.jsx";
import Practice from "./pages/Practice.jsx";
import MyProfile from "./pages/MyProfile.jsx";

export default function App() {


return (
<BrowserRouter>
<Routes>
<Route path="/" element={<Layout />}>
<Route index element={<Home />} />
<Route path="practice" element={<Practice />} />
<Route path="about" element={<About />} />
<Route path="myprofile" element={<MyProfile />} />
<Route path="*" element={<NoPage />} />
</Route>
</Routes>
</BrowserRouter>
);
};

);
}
73 changes: 0 additions & 73 deletions frontend/pronunciationAppFront/src/Cards.jsx

This file was deleted.

Loading