From 8a7b481f47190acfa2173f4dc51f92f7d22c665d Mon Sep 17 00:00:00 2001 From: Stan Runge Date: Mon, 3 Jun 2024 17:49:46 +0200 Subject: [PATCH] add new pages --- app/certificates/page.tsx | 0 app/layout.tsx | 4 +++- app/projects/page.tsx | 23 ++++++++++++++++++++++ app/publications/blog/neural-nets/page.tsx | 7 ------- app/publications/{blog => }/page.tsx | 0 5 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 app/certificates/page.tsx create mode 100644 app/projects/page.tsx delete mode 100644 app/publications/blog/neural-nets/page.tsx rename app/publications/{blog => }/page.tsx (100%) diff --git a/app/certificates/page.tsx b/app/certificates/page.tsx new file mode 100644 index 0000000..e69de29 diff --git a/app/layout.tsx b/app/layout.tsx index ac6e265..acd726d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -22,7 +22,9 @@ export default function RootLayout({
- + + +
{children} diff --git a/app/projects/page.tsx b/app/projects/page.tsx new file mode 100644 index 0000000..fd979be --- /dev/null +++ b/app/projects/page.tsx @@ -0,0 +1,23 @@ +export default async function Page() { + return ( +
+
+

Stan's Blog

+

+ but what do I know +

+
+ +

Posts ({[].length})

+ {/* + */} +
+ ); +} diff --git a/app/publications/blog/neural-nets/page.tsx b/app/publications/blog/neural-nets/page.tsx deleted file mode 100644 index 39fdec2..0000000 --- a/app/publications/blog/neural-nets/page.tsx +++ /dev/null @@ -1,7 +0,0 @@ -export default async function Index() { - return ( - <> -

hello

- - ); -} diff --git a/app/publications/blog/page.tsx b/app/publications/page.tsx similarity index 100% rename from app/publications/blog/page.tsx rename to app/publications/page.tsx