aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/layout
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-16 13:56:06 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-16 13:56:15 +0100
commit8942cf3c705bbc78a6b3317599658e9bb86dd31b (patch)
treec02c432dad7b31fa11160f16c221dfac45255920 /src/frontend/app/components/layout
parent3ce586243a49f34b36d0fe4099bbfb2631610f11 (diff)
Add legal document shenanigans
Closes #147
Diffstat (limited to 'src/frontend/app/components/layout')
-rw-r--r--src/frontend/app/components/layout/Drawer.tsx6
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>
</>