From 024b29dc7ec7d674e3c564653de79ae31fa135ba Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 26 Feb 2025 16:41:25 -0800 Subject: [PATCH] feat: add link to sitemap (#4) ### Explanation _No response_ ### Issue _No response_ ### Attestations - [x] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/) - [x] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/). - [x] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/). ### Dependencies - [ ] I have pinned the dependencies to a specific patch version. ### Style - [x] I have run the linter and resolved any errors. - [x] My pull request uses an appropriate title, matching the conventional commit standards. - [x] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request. ### Tests - [ ] My contribution adds new code, and I have added tests to cover it. - [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes. - [ ] All new and existing tests pass locally with my changes. - [ ] Code coverage remains at or above the configured threshold. ### Documentation _No response_ ### Versioning Minor - My pull request introduces a new non-breaking feature. Reviewed-on: https://git.nhcarrigan.com/nhcarrigan/portfolio/pulls/4 Co-authored-by: Naomi Carrigan Co-committed-by: Naomi Carrigan --- .vscode/settings.json | 4 ++-- src/app/naomi/page.tsx | 8 ++++++++ src/app/page.tsx | 11 ++++++++++- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9e42a51..bb97e57 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,7 +6,7 @@ "typescript" ], "sonarlint.connectedMode.project": { - "connectionId": "nhcarrigan", - "projectKey": "nhcarrigan_portfolio" + "connectionId": "Naomi", + "projectKey": "portfolio" } } diff --git a/src/app/naomi/page.tsx b/src/app/naomi/page.tsx index 82c5a77..7b8a531 100644 --- a/src/app/naomi/page.tsx +++ b/src/app/naomi/page.tsx @@ -47,6 +47,14 @@ const Naomi = (): JSX.Element => { ); })} +

+ {`Can't find what you are looking for? `} + {`Check out our sitemap`} + {`.`} +

); }; diff --git a/src/app/page.tsx b/src/app/page.tsx index 6fe5c4e..531870f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,7 +26,8 @@ const Home = (): JSX.Element => {

{`Welcome to the landing page for our organisation! Use the links below to navigate. If you are looking for information about Naomi `} - {`see her landing page`}{`.`} + {`see her landing page`} + {`.`}

    {NavItems.map((item, index) => { @@ -49,6 +50,14 @@ const Home = (): JSX.Element => { ); })}
+

+ {`Can't find what you are looking for? `} + {`Check out our sitemap`} + {`.`} +

); };