Skip to content

Commit

Permalink
feat: add about section
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoRVSN committed Aug 19, 2023
1 parent 24802a3 commit e76af08
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 19 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is my fucking Software Engineer personal arsenal

<div align="center">
<img height="300" src="./_assets/buda.png" alt="Buda BR" />
<img height="300" src="./static/img/buda.png" alt="Buda BR" />
</div>

___
Expand Down Expand Up @@ -30,5 +30,14 @@ ___

πŸš€ How to run:

- Install [docsify](https://docsify.js.org/#/?id=docsify)
- Run `docsify serve` or `yarn dev`
- Install dependences

```bash
yarn
```

- Run the application

```bash
yarn dev
```
18 changes: 3 additions & 15 deletions config/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,25 @@ module.exports = {
items: [
{
label: 'Tutorial',
to: '/docs/intro'
to: '.'
}
]
},
{
title: 'Community',
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/docusaurus'
},
{
label: 'Discord',
href: 'https://discordapp.com/invite/docusaurus'
},
{
label: 'Twitter',
href: 'https://twitter.com/docusaurus'
href: 'https://twitter.com/rodrigorvsn'
}
]
},
{
title: 'More',
items: [
{
label: 'Blog',
to: '/blog'
},
{
label: 'GitHub',
href: 'https://github.com/facebook/docusaurus'
href: 'https://github.com/RodrigoRVSN'
}
]
}
Expand Down
37 changes: 37 additions & 0 deletions docs/About/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# About

### πŸ”Ž Here we have:

- πŸ“• Books
- πŸ“šοΈ Data Structures
- πŸ€“ Algorithms
- πŸ‘¨β€πŸŽ¨ Design Patterns
- πŸ› SOLID
- πŸ€” Concepts

___

### πŸ› οΈ Technologies and Methods

- Typescript
- Vitest
- Python
- Java
- Golang
- TDD

___

πŸš€ How to run:

- Install dependences

```bash
yarn
```

- Run the application

```bash
yarn dev
```
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/intro">
to="/docs/About">
Docusaurus Tutorial - 5min ⏱️
</Link>
</div>
Expand Down

0 comments on commit e76af08

Please sign in to comment.