The source code for my personal website and blog at amirsolo.com
pages/*• Static pages (e.g. /about ).pages/blog/*• Static pre-rendered blog pages.public/*• Static resources such as fonts, images, etc.data/blog/*• Blog posts using MDX.
├── README.md
├── package.json
│
├── components
│ └── Nav.jsx
│ └── Container.jsx
|
├── pages
│ └── index.jsx
│ └── about.jss
│
├── data
│ └── blog
| └── blog-post.mdx
...
$ git clone https://github.com/amirsolo/amirsolo.com.git
$ cd amirsolo.com
$ npm install
$ npm run dev# runs the app in development mode
$ npm run dev
# makes production build
$ npm run build
# runs the app in production mode
$ npm startMy site is hosted on Vercel. Highly recommend it. Specially for Next.js projects.
- I'm using Dependabot to keep my dependecies up to date automatically.
- I've also installed Imgbot on this repo to compress and optimize my images.