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.
- Host: GitHub
- URL: https://github.com/osamaadam/personal-website
- Owner: osamaadam
- Created: 2020-04-10T15:14:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-13T02:14:25.000Z (about 3 years ago)
- Last Synced: 2024-12-30T20:33:45.395Z (over 1 year ago)
- Topics: blog, gatsby, jamstack
- Language: TypeScript
- Homepage: https://osamaadam.me
- Size: 7.57 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Portfolio Website
[](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
```