Skip to content

Commit 1ee6ba0

Browse files
author
manu-mishra
committed
updated ui
1 parent f5fd71e commit 1ee6ba0

38 files changed

+9873
-7870
lines changed

.github/workflows/static.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ concurrency:
2121
cancel-in-progress: true
2222

2323
jobs:
24-
# Build job
25-
build:
24+
build-and-deploy:
25+
environment:
26+
name: github-pages
27+
url: ${{ steps.deployment.outputs.page_url }}
2628
runs-on: ubuntu-latest
2729
steps:
2830
- name: Checkout
@@ -31,7 +33,7 @@ jobs:
3133
- name: Setup Node.js
3234
uses: actions/setup-node@v4
3335
with:
34-
node-version: '20'
36+
node-version: '18'
3537
cache: 'npm'
3638
cache-dependency-path: './ui/package-lock.json'
3739

@@ -51,16 +53,8 @@ jobs:
5153
- name: Upload artifact
5254
uses: actions/upload-pages-artifact@v3
5355
with:
54-
path: './docs'
55-
56-
# Deployment job
57-
deploy:
58-
environment:
59-
name: github-pages
60-
url: ${{ steps.deployment.outputs.page_url }}
61-
needs: build
62-
runs-on: ubuntu-latest
63-
steps:
56+
path: './ui/build'
57+
6458
- name: Deploy to GitHub Pages
6559
id: deployment
6660
uses: actions/deploy-pages@v4

ui/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
# Website
22

3-
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
3+
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
44

5-
### Installation
5+
## Installation
66

7-
```
8-
$ yarn
7+
```bash
8+
yarn
99
```
1010

11-
### Local Development
11+
## Local Development
1212

13-
```
14-
$ yarn start
13+
```bash
14+
yarn start
1515
```
1616

1717
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
1818

19-
### Build
19+
## Build
2020

21-
```
22-
$ yarn build
21+
```bash
22+
yarn build
2323
```
2424

2525
This command generates static content into the `build` directory and can be served using any static contents hosting service.
2626

27-
### Deployment
27+
## Deployment
2828

2929
Using SSH:
3030

31-
```
32-
$ USE_SSH=true yarn deploy
31+
```bash
32+
USE_SSH=true yarn deploy
3333
```
3434

3535
Not using SSH:
3636

37-
```
38-
$ GIT_USER=<Your GitHub username> yarn deploy
37+
```bash
38+
GIT_USER=<Your GitHub username> yarn deploy
3939
```
4040

4141
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

ui/babel.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

ui/blog/2019-05-28-first-blog-post.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

ui/blog/2019-05-29-long-blog-post.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

ui/blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 20 deletions
This file was deleted.
Binary file not shown.

ui/blog/2021-08-26-welcome/index.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

ui/blog/2023-06-01-welcome.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
slug: welcome
3+
title: Welcome to My Blog
4+
authors:
5+
name: Manu Mishra
6+
title: Software Engineer
7+
url: https://github.com/manu-mishra
8+
image_url: /img/logo.png
9+
tags: [welcome, introduction]
10+
---
11+
12+
Welcome to my blog! This is where I'll be sharing my thoughts, experiences, and insights on technology, software development, and other topics that interest me.
13+
14+
Stay tuned for more content coming soon!
15+
16+
<!--truncate-->
17+
18+
## What to Expect
19+
20+
In this blog, I plan to cover a variety of topics including:
21+
22+
- Software development best practices
23+
- Technology trends and insights
24+
- Personal projects and experiences
25+
- Tutorials and how-to guides
26+
27+
I'm excited to share my journey with you and hope you find the content valuable and engaging.
28+
29+
Feel free to reach out to me on [GitHub](https://github.com/manu-mishra) if you have any questions or suggestions for topics you'd like me to cover.

ui/blog/authors.yml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
1-
endi:
2-
name: Endilie Yacop Sucipto
3-
title: Maintainer of Docusaurus
4-
url: https://github.com/endiliey
5-
image_url: https://github.com/endiliey.png
6-
7-
yangshun:
8-
name: Yangshun Tay
9-
title: Front End Engineer @ Facebook
10-
url: https://github.com/yangshun
11-
image_url: https://github.com/yangshun.png
12-
13-
slorber:
14-
name: Sébastien Lorber
15-
title: Docusaurus maintainer
16-
url: https://sebastienlorber.com
17-
image_url: https://github.com/slorber.png
1+
manu:
2+
name: Manu Mishra
3+
title: Software Engineer
4+
url: https://github.com/manu-mishra
5+
image_url: /img/logo.png

0 commit comments

Comments
 (0)