/** * @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;