/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import Image from "next/image"; import React, { type JSX } from "react"; import { NaomiNavItems } from "../../config/NavItems"; /** * Renders Naomi's landing page component. * @returns A JSX element. */ const Naomi = (): JSX.Element => { return (

{`Naomi Carrigan`}

Naomi Carrigan

{`Software Engineer | Community Manager | Technomancer`}

{`Hiya! I'm Naomi. I'm a developer, and I build inclusive spaces on the internet!`}

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

); }; export default Naomi;