feat: add link to sitemap #4

Merged
naomi merged 1 commits from feat/sitemap into main 2025-02-26 16:41:26 -08:00
3 changed files with 20 additions and 3 deletions

View File

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

View File

@ -47,6 +47,14 @@ const Naomi = (): JSX.Element => {
);
})}
</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>
);
};

View File

@ -26,7 +26,8 @@ const Home = (): JSX.Element => {
<p className="mb-4">
{`Welcome to the landing page for our organisation! Use the links below to navigate.
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>
<ul>
{NavItems.map((item, index) => {
@ -49,6 +50,14 @@ const Home = (): JSX.Element => {
);
})}
</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>
);
};