diff --git a/components/Footer/style.ts b/components/Footer/style.ts index f3a3734..505869e 100644 --- a/components/Footer/style.ts +++ b/components/Footer/style.ts @@ -13,8 +13,10 @@ export const Nav = styled(BottomNavigation)({ }); export const NavButton = styled(BottomNavigationAction)({ - color: theme.colors.primaryVariant, + color: "#ddd", "&.Mui-selected": { color: "#fff", + fontWeight: "bold", + fontSize: "1rem", }, }); diff --git a/pages/404.tsx b/pages/404.tsx deleted file mode 100644 index 3e7d841..0000000 --- a/pages/404.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const NotFoundPage = () => { - return

La página que buscas no está

; -}; - -export default NotFoundPage;