Skip to content

Commit

Permalink
correccion etiqueta <a> por Link
Browse files Browse the repository at this point in the history
  • Loading branch information
claymartinez committed Sep 27, 2023
1 parent db57542 commit 2893db1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { FC } from 'react';
import Image from 'next/image';
import { MainButton } from '~/components/button/button';
import Link from 'next/link';

interface notFoundProps {}

Expand All @@ -26,7 +27,7 @@ const notFound: FC<notFoundProps> = ({}) => {
variant="tertiary"
className="bg-primary-lm text-white border font-bold"
>
<a href="/">Ir Pagina Principal</a>
<Link href="/">Ir Pagina Principal</Link>
</MainButton>
</div>
);
Expand Down

0 comments on commit 2893db1

Please sign in to comment.