mirror of
https://github.com/bspeice/speice.io
synced 2024-11-15 06:28:10 -05:00
24 lines
728 B
Plaintext
24 lines
728 B
Plaintext
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { faGithub, faLinkedin } from "@fortawesome/free-brands-svg-icons";
|
|
import { faEnvelope } from "@fortawesome/free-solid-svg-icons";
|
|
|
|
import Layout from "./LayoutPage";
|
|
export default Layout;
|
|
|
|
Developer living in New York City
|
|
|
|
> <FontAwesomeIcon
|
|
> icon={faEnvelope}
|
|
> style={{ color: "var(--color-secondary)" }}
|
|
> /> [bradlee@speice.io](mailto:bradlee@speice.io)
|
|
>
|
|
> <FontAwesomeIcon
|
|
> icon={faGithub}
|
|
> style={{ color: "var(--color-secondary)" }}
|
|
> /> [bspeice](https://github.com/bspeice)
|
|
>
|
|
> <FontAwesomeIcon
|
|
> icon={faLinkedin}
|
|
> style={{ color: "var(--color-secondary)" }}
|
|
> /> [bradleespeice](https://www.linkedin.com/in/bradleespeice/)
|