diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-16 13:56:06 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-16 13:56:15 +0100 |
| commit | 8942cf3c705bbc78a6b3317599658e9bb86dd31b (patch) | |
| tree | c02c432dad7b31fa11160f16c221dfac45255920 /src/frontend/app/components | |
| parent | 3ce586243a49f34b36d0fe4099bbfb2631610f11 (diff) | |
Add legal document shenanigans
Closes #147
Diffstat (limited to 'src/frontend/app/components')
| -rw-r--r-- | src/frontend/app/components/layout/Drawer.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/frontend/app/components/layout/Drawer.tsx b/src/frontend/app/components/layout/Drawer.tsx index 55aa3a0..3f7b4d5 100644 --- a/src/frontend/app/components/layout/Drawer.tsx +++ b/src/frontend/app/components/layout/Drawer.tsx @@ -1,4 +1,4 @@ -import { Info, Settings, Star, X } from "lucide-react"; +import { Info, Settings, Shield, Star, X } from "lucide-react"; import React, { useEffect } from "react"; import { useTranslation } from "react-i18next"; import { Link, useLocation } from "react-router"; @@ -45,6 +45,10 @@ export const Drawer: React.FC<DrawerProps> = ({ isOpen, onClose }) => { <Info size={20} /> <span>{t("about.title", "Acerca de")}</span> </Link> + <Link to="/politica-privacidad" className="drawer__link"> + <Shield size={20} /> + <span>{t("navbar.privacy", "Privacidad")}</span> + </Link> </nav> </div> </> |
