import { useId } from "react"; import { GoLock } from "react-icons/go"; import { rgba } from "polished"; import Link from "../components/Link"; import type { ComponentPropsWithoutRef } from "react"; import type { Route } from "next"; import styles from "./page.module.css"; const ColorfulLink = ({ lightColor, darkColor, children, ...rest }: ComponentPropsWithoutRef & { lightColor: string; darkColor: string; }) => { const uniqueId = `styled_${useId().replaceAll(":", "")}`; return ( <> {children} ); }; export default function Page() { return (

Hi there! I'm Jake. 👋

I'm a frontend web developer based in the{" "} Boston {" "} area.

I specialize in{" "} React {" "} and{" "} vanilla JavaScript {" "} to make nifty{" "} Jamstack sites {" "} with dynamic{" "} Node.js {" "} services. But I still know my way around less buzzwordy stacks like{" "} LAMP , too.

Whenever possible, I also apply my experience in{" "} application security ,{" "} serverless stacks , and{" "} DevOps automation .

I fell in love with{" "} frontend web design {" "} and{" "} backend programming {" "} when my only source of income was{" "} 🪄") 5 5, auto`, }} > the Tooth Fairy . I've improved a bit since then, I think? 🤷

Over the years, some of my side projects{" "} have {" "} been {" "} featured {" "} by {" "} various {" "} media {" "} outlets .

You can find my work on{" "} GitHub {" "} and{" "} LinkedIn . I'm always available to connect over{" "} email {" "} {" "} 2B0C 9CF2 51E6 9A39 ,{" "} Bluesky , or{" "} Mastodon {" "} as well!

); }