https://github.com/endlessreform/site
Current source code for my personal website
https://github.com/endlessreform/site
nextjs react tailwind
Last synced: 10 months ago
JSON representation
Current source code for my personal website
- Host: GitHub
- URL: https://github.com/endlessreform/site
- Owner: EndlessReform
- Created: 2022-03-27T07:30:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-02T04:31:59.000Z (over 1 year ago)
- Last Synced: 2025-06-05T06:56:02.832Z (about 1 year ago)
- Topics: nextjs, react, tailwind
- Language: TypeScript
- Homepage: https://www.keisling.me
- Size: 17.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jacob Keisling's personal website
## Architecture
This is a [Next.js 14](https://nextjs.org) site, using server components.
It's currently deployed using Vercel. (Yes, they got me, for now.)
## Local development
### Installation
At the root, install packages:
```bash
# NVM prefered
nvm use 20
npm i
```
### Usage
Use the standard Next.js commands:
```bash
# Start server
npm run dev
# Build for production
npm run build
# Serve
npm run start
```