Skip to content

Commit

Permalink
Added Product Page and implemented backend for some pages
Browse files Browse the repository at this point in the history
  • Loading branch information
sanskarg348 committed Oct 25, 2022
1 parent 6f35a6e commit eea372d
Show file tree
Hide file tree
Showing 18 changed files with 23,587 additions and 8 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/assets.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,5 +172,8 @@
},
"617089ddfff39b07179afbe2_logo-didifood-restaurante-x-template.svg": {
"mime": "image/svg+xml"
},
"6177697a7a32aa3d01bf9fce_product-icons-01-restaurante-x-template.svg": {
"mime": "image/svg+xml"
}
}
2 changes: 2 additions & 0 deletions atri_app/app/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import "./styles.css";
import Home from "./pages/Home.jsx";
import About from "./pages/About.jsx";
import Menu from "./pages/Menu.jsx";
import Product from "./pages/Product.jsx";

export default function App() {
return (
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/menu" element={<Menu />} />
<Route path="/product" element={<Product />} />
</Routes>
);
}
3 changes: 2 additions & 1 deletion atri_app/app/src/hooks/useIoStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ const useIoStore = create((set) => {
return {
"Home": {},
"about": {},
"menu": {}
"menu": {},
"product": {}
}});

export default useIoStore;
Loading

0 comments on commit eea372d

Please sign in to comment.