Skip to content

Commit

Permalink
deploy con footer
Browse files Browse the repository at this point in the history
  • Loading branch information
clara7227 committed Oct 15, 2024
1 parent 3f6dca6 commit 5d9097c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function RootLayout({ children }) {
</div>
{children}
<div>
{/* <Footer /> */}
<Footer />
</div>
</body>
</html>
Expand Down
6 changes: 3 additions & 3 deletions components/core/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

import React from "react";
import clsx from "clsx";
import { NavLink } from "react-router-dom";
import { useTranslation } from "react-i18next";
import { activeRoutes } from "@/constants/routes";
import { EnvelopeClosedIcon } from "@radix-ui/react-icons";
import Image from "../ui/image";
import Text from "../ui/Text";
import Link from 'next/link';

export default function Footer(props) {
const { t } = useTranslation();
Expand Down Expand Up @@ -63,9 +63,9 @@ export default function Footer(props) {
: "text-left mb-1 lg:mb-1.5 hover:underline"
}
>
<NavLink className="text-base" to={route.route}>
<Link className="text-base" href={route.route}>
{t(route.key)}
</NavLink>
</Link>
</li>
))}
</ul>
Expand Down

0 comments on commit 5d9097c

Please sign in to comment.