Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamishmw/portfolio
My personal portfolio website built using React and three js
https://github.com/hamishmw/portfolio
cyberpunk designer developer framer-motion portfolio react remix threejs
Last synced: 6 days ago
JSON representation
My personal portfolio website built using React and three js
- Host: GitHub
- URL: https://github.com/hamishmw/portfolio
- Owner: HamishMW
- License: mit
- Created: 2017-08-03T05:05:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-16T02:46:21.000Z (2 months ago)
- Last Synced: 2024-12-18T18:02:20.052Z (about 1 month ago)
- Topics: cyberpunk, designer, developer, framer-motion, portfolio, react, remix, threejs
- Language: JavaScript
- Homepage: https://hamishw.com
- Size: 278 MB
- Stars: 2,649
- Watchers: 22
- Forks: 576
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Personal portfolio
[![Site preview](/public/site-preview.png)](https://hamishw.com)
My design portfolio to showcase a few projects. Built with [Remix](https://remix.run/), [Three.js](https://threejs.org/), and [Framer Motion](https://www.framer.com/motion/). View the [live site](https://hamishw.com) or check out a live version of the [components storybook](https://storybook.hamishw.com).
## Install & run
Make sure you have nodejs `19.9.0` or higher and npm `9.6.3` or higher installed. Install dependencies with:
```bash
npm install
```Once it's done start up a local server with:
```bash
npm run dev
```To view the components storybook:
```bash
npm run dev:storybook
```## Deployment
I've set up the site using Cloudflare for hosting. Deploy the site to Cloudflare Pages:
```bash
npm run deploy
```## Permissions
I'm cool with anyone using the code or parts of the code for their own site, it is open source so people can learn from it and adapt it. However, I would encourage you to modify the theme and components it to make it your own. If you are using the site's design largely unmodified, I'd appreciate being credited as the designer of the website.
I do not give permission to present any of my projects as your own (this is being actively used as my portfolio site and these are my real projects I've worked on).
## FAQs
How do I change the color on the
DisplacementSphere
(blobby rotating thing in the background).
You'll need to edit the fragment shader. [Check out this issue for more details](https://github.com/HamishMW/portfolio/issues/19#issuecomment-870996615).How do I get the contact form to work?
To get the contact form working create an AWS account and set up SES (Simple Email service). Then plug in your details into `.dev.vars.example` and rename it to `.dev.vars`. You'll also need to add these as enviroment variables in the Cloudflare dashboard for it to work in production. Or if you don't mind sending through gmail use [nodemailer](https://nodemailer.com/) instead.