Skip to content

Commit

Permalink
add link
Browse files Browse the repository at this point in the history
  • Loading branch information
byandrev committed Sep 19, 2023
1 parent 2a7bd7f commit f837c77
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/app/[lang]/io-problem-5/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import Link from "@/components/Link";
import { useTranslation } from "../../i18n";

type Props = {
params: { lang: string };
};

export default async function Home({ params: { lang } }: Props) {
return (
<>
<div className="space-y-6">
<h2>I.O - Problem 5</h2>
<Link
href="https://www.canva.com/design/DAFu1P9sjRY/xQs6Kw9r799z1M6yYAldiQ/edit?utm_content=DAFu1P9sjRY&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton"
target="_blank"
>
https://www.canva.com/design/DAFu1P9sjRY/xQs6Kw9r799z1M6yYAldiQ/edit?utm_content=DAFu1P9sjRY&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
</Link>
</div>
</>
);
}

export async function generateMetadata({ params: { lang } }: Props) {
const { t } = await useTranslation(lang);

return {
title: "Andres Parra - Software Engineer | @byandrev",
description: t("description") + "Andres Parra - Software Engineer",
};
}

0 comments on commit f837c77

Please sign in to comment.