fix(front) добавлена страница контаксты

This commit is contained in:
2026-06-15 15:01:13 +03:00
parent a48b417257
commit 15efab81a4
5 changed files with 23 additions and 4 deletions
+2
View File
@@ -5,6 +5,7 @@ import AuthForm from "./components/AuthForm";
import About from "./pages/About";
import Shop from "./pages/Shop";
import NotFoundPage from "./pages/NotFoundPage";
import Contact from "./pages/Contact";
const PrivateRoute = ({ children }) => {
const token = localStorage.getItem("token");
@@ -24,6 +25,7 @@ export default function App() {
<Route path="/add_item" element={<AddItem />} />
<Route path="/about" element={<About />} />
<Route path="/shop" element={<Shop />} />
<Route path="/contact" element={<Contact />} />
<Route path="*" element={<NotFoundPage />} />
</Routes>