An open API service indexing awesome lists of open source software.

https://github.com/osamaadam/personal-website

JAM stack personal blog.
https://github.com/osamaadam/personal-website

blog gatsby jamstack

Last synced: about 1 month ago
JSON representation

JAM stack personal blog.

Awesome Lists containing this project

README

          

# Portfolio Website

[![Netlify Status](https://api.netlify.com/api/v1/badges/921f376b-a2e3-415e-ac9d-81a99850a5a0/deploy-status)](https://app.netlify.com/sites/osamaadam/deploys)

This is a Gatsby app I'm working on to showcase my abilities and achievements.
You may check the deployed website at
[osamaadam.me](https://osamaadam.me).

## Goals

- Showcasing projects.
- Building a responsive website from scratch.
- Learning more about Gatsby and its various plugins.
- Experimenting with my brand and figuring out my style.
- Lessening my dependency on CSS frameworks like Bootstrap.
- Trying to understand SEO.

## How to run

### Install dependencies

```sh
yarn
```

### Run app

```sh
yarn start
```

The app should be available on port 8000 (default Gatsby port)

## Blog post template

```mdx
---
title: "Article title"
date: UNIX time, ex: 1596592718668
author: "Author name as in plain English"
authorImg: relative path to author image, ex: ../../assets/authors/osama-adam.jpeg
authorUrl: "link to profile, use anything here, linkedin, twitter, anything"
banner: relative path to the banner image, ex: are-ya-winning.jpg
tags: ["list", "of", "tags"]
---

// body of the article
```