feat: add link to sitemap
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 2m11s

This commit is contained in:
Naomi Carrigan 2025-02-26 16:31:09 -08:00
parent 839450d2a8
commit b297c53a93
Signed by: naomi
SSH Key Fingerprint: SHA256:rca1iUI2OhAM6n4FIUaFcZcicmri0jgocqKiTTAfrt8
3 changed files with 20 additions and 3 deletions

View File

@ -6,7 +6,7 @@
"typescript" "typescript"
], ],
"sonarlint.connectedMode.project": { "sonarlint.connectedMode.project": {
"connectionId": "nhcarrigan", "connectionId": "Naomi",
"projectKey": "nhcarrigan_portfolio" "projectKey": "portfolio"
} }
} }

View File

@ -47,6 +47,14 @@ const Naomi = (): JSX.Element => {
); );
})} })}
</ul> </ul>
<p>
{`Can't find what you are looking for? `}
<a
className="underline"
href="https://sitemap.nhcarrigan.com"
>{`Check out our sitemap`}</a>
{`.`}
</p>
</main> </main>
); );
}; };

View File

@ -26,7 +26,8 @@ const Home = (): JSX.Element => {
<p className="mb-4"> <p className="mb-4">
{`Welcome to the landing page for our organisation! Use the links below to navigate. {`Welcome to the landing page for our organisation! Use the links below to navigate.
If you are looking for information about Naomi `} If you are looking for information about Naomi `}
<a className="underline" href="/naomi">{`see her landing page`}</a>{`.`} <a className="underline" href="/naomi">{`see her landing page`}</a>
{`.`}
</p> </p>
<ul> <ul>
{NavItems.map((item, index) => { {NavItems.map((item, index) => {
@ -49,6 +50,14 @@ const Home = (): JSX.Element => {
); );
})} })}
</ul> </ul>
<p>
{`Can't find what you are looking for? `}
<a
className="underline"
href="https://sitemap.nhcarrigan.com"
>{`Check out our sitemap`}</a>
{`.`}
</p>
</main> </main>
); );
}; };