From b90779cf90c5a56e4b33600ea48fb6da7bd6d9a1 Mon Sep 17 00:00:00 2001 From: Jim O'Donnell Date: Fri, 27 Oct 2023 15:16:16 +0100 Subject: [PATCH] Add named page headers --- packages/app-root/src/app/about/page.js | 3 +++ packages/app-root/src/app/projects/page.js | 3 +++ packages/app-root/src/components/PageHeader.js | 14 ++++++++------ 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/packages/app-root/src/app/about/page.js b/packages/app-root/src/app/about/page.js index 197074ea7e..ad09698f91 100644 --- a/packages/app-root/src/app/about/page.js +++ b/packages/app-root/src/app/about/page.js @@ -1,5 +1,8 @@ export default function AboutPage() { return ( +
+

This is the section header.

+

This is lib-content-pages

diff --git a/packages/app-root/src/app/projects/page.js b/packages/app-root/src/app/projects/page.js index f4575f3406..f7fc4be5b3 100644 --- a/packages/app-root/src/app/projects/page.js +++ b/packages/app-root/src/app/projects/page.js @@ -1,5 +1,8 @@ export default function ProjectPage() { return ( +
+

This is the project header.

+

This is lib-project

diff --git a/packages/app-root/src/components/PageHeader.js b/packages/app-root/src/components/PageHeader.js index 10e7ee4216..82e1119a13 100644 --- a/packages/app-root/src/components/PageHeader.js +++ b/packages/app-root/src/components/PageHeader.js @@ -15,11 +15,13 @@ export default function PageHeader() { const { data: unreadNotifications }= useUnreadNotifications(user) return ( - +
+ +
) } \ No newline at end of file