From 9d8735b35c822affab1b4942cac3eb8cf65ebcbf Mon Sep 17 00:00:00 2001 From: Stan Runge Date: Tue, 4 Jun 2024 16:12:50 +0200 Subject: [PATCH] update --- app/certificates/page.tsx | 23 ++++++++++++----------- app/cokno/page.tsx | 7 +++++++ app/components/MdiGithub.tsx | 19 +++++++++++++++++++ app/layout.tsx | 4 +++- app/publications/page.tsx | 33 +++++++++++++++++++++++++++++++++ 5 files changed, 74 insertions(+), 12 deletions(-) create mode 100644 app/cokno/page.tsx create mode 100644 app/components/MdiGithub.tsx diff --git a/app/certificates/page.tsx b/app/certificates/page.tsx index 65fcb5e..581ee06 100644 --- a/app/certificates/page.tsx +++ b/app/certificates/page.tsx @@ -3,17 +3,18 @@ export default async function Page() {

Certificates (1)

-
-

Certificates

- Mathematics for Machine Learning: Linear Algebra -

Imperial College London

- - Link to Certificate - -
+ {[1, 2, 3].map((certificate) => ( +
+ Mathematics for Machine Learning: Linear Algebra +

Imperial College London

+ + Link to Certificate + +
+ ))}
); } diff --git a/app/cokno/page.tsx b/app/cokno/page.tsx new file mode 100644 index 0000000..90f5e70 --- /dev/null +++ b/app/cokno/page.tsx @@ -0,0 +1,7 @@ +export default async function Page() { + return ( +
+

The Collective Knowledge of Stan Runge

+
+ ); +} diff --git a/app/components/MdiGithub.tsx b/app/components/MdiGithub.tsx new file mode 100644 index 0000000..669cd22 --- /dev/null +++ b/app/components/MdiGithub.tsx @@ -0,0 +1,19 @@ +import React from "react"; +import type { SVGProps } from "react"; + +export function MdiGithub(props: SVGProps) { + return ( + + + + ); +} diff --git a/app/layout.tsx b/app/layout.tsx index 2a49786..832f6c3 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import { GeistSans } from "geist/font/sans"; import "./globals.css"; import TabItem from "@/components/TabItem"; +import { MdiGithub } from "./components/MdiGithub"; const defaultUrl = process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` @@ -30,10 +31,11 @@ export default function RootLayout({ + {/* */} ); }