This commit is contained in:
2024-06-04 16:12:50 +02:00
parent 949e573539
commit 9d8735b35c
5 changed files with 74 additions and 12 deletions

View File

@@ -3,17 +3,18 @@ export default async function Page() {
<div className="flex flex-col items-center">
<h1 className="text-4xl">Certificates (1)</h1>
<div className="text-center my-10">
<h2 className="text-3xl">Certificates</h2>
<b>Mathematics for Machine Learning: Linear Algebra</b>
<p>Imperial College London</p>
<a
className="text-blue-500"
href="https://coursera.org/share/11b0e4d6cf00b44869dcf9c4bec70865"
>
Link to Certificate
</a>
</div>
{[1, 2, 3].map((certificate) => (
<div className="text-center my-10">
<b>Mathematics for Machine Learning: Linear Algebra</b>
<p>Imperial College London</p>
<a
className="text-blue-500"
href="https://coursera.org/share/11b0e4d6cf00b44869dcf9c4bec70865"
>
Link to Certificate
</a>
</div>
))}
</div>
);
}