Skip to content

Commit

Permalink
Merge pull request #90 from Sweetiez/develop
Browse files Browse the repository at this point in the history
feat(font): privacy page
  • Loading branch information
LAymeric authored Jun 27, 2022
2 parents f651753 + c02f937 commit d74c5a3
Show file tree
Hide file tree
Showing 3 changed files with 545 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import HandleCheckoutStripePayment from './components/Checkout/HandleCheckoutStr
import CheckoutSuccess from './components/Checkout/CheckoutSuccess';
import Orders from './components/Order/Orders';
import Profile from './components/Profile/Profile';
import Privacy from "./components/Privacy";

function App() {
const queryClient = new QueryClient();
Expand All @@ -34,7 +35,8 @@ function App() {
<Route path="/recipes" element={<Recipes />} />
<Route path="/recipes/:id" element={<RecipeDetail />} />
<Route path="/user/profile" element={<Profile />} />
<Route path="/user/order" element={<Orders />} />
<Route path="/user/order" element={<Orders />} />
<Route path="/privacy" element={<Privacy />} />
<Route path="*" element={<NotFound />} />
</Routes>
</Router>
Expand Down
3 changes: 3 additions & 0 deletions src/assets/css/privacy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
table, th, td {
border: 1px solid black;
}
Loading

0 comments on commit d74c5a3

Please sign in to comment.