diff --git a/src/app/tech/page.tsx b/src/app/tech/page.tsx new file mode 100644 index 0000000..f356f00 --- /dev/null +++ b/src/app/tech/page.tsx @@ -0,0 +1,57 @@ +/** + * @copyright nhcarrigan + * @license Naomi's Public License + * @author Naomi Carrigan + */ +import { Rule } from "../../components/rule"; +import type { JSX } from "react"; + +/** + * Renders the /tech page. + * @returns A React Component. + */ +const PlayPage = (): JSX.Element => { + return ( +
+

{`Technologies`}

+

+ {`These are the technologies I use on a regular basis.`} +

+
+ +

{`Environment`}

+
+ Arch Linux + VSCode + Prisma + Node.js +
+
+
+ +

{`Languages`}

+
+ JavaScript + TypeScript + Python + Dotnet + Kotlin + Rust + Ruby +
+
+
+ +

{`Coming Soon!`}

+
+ Go + Dart + Flutter +
+
+
+ ); +}; + +export default PlayPage; diff --git a/src/config/NavItems.ts b/src/config/NavItems.ts index c703514..fd56c81 100644 --- a/src/config/NavItems.ts +++ b/src/config/NavItems.ts @@ -23,6 +23,7 @@ export const NavItems = [ { href: "/manifesto", text: "Transfemme Manifesto" }, { href: "/ask", text: "Ask Me Anything!" }, { href: "/play", text: "Play with Naomi" }, + { href: "/tech", text: "Technologies" }, ].sort((a, b) => { return a.text.localeCompare(b.text); });