Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: made necessary changes to docusaurus #123

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ yarn build

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

**Note**: You can use `yarn serve` to test your build locally.

## Deployment

```
Expand All @@ -43,9 +45,11 @@ Deploy using surge with the following steps:
npm install --g surge
```
2. To build the static files of the site for production in the root/docs directory of project, run:
```
npm run build
```
```
npm run build
```
**Note**: You can use `npm run serve` to test your build locally.

3. Run this command inside the root/docs directory of project:

```
Expand Down
3 changes: 1 addition & 2 deletions docs/docs/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ title: Home
slug: /
---

Welcome to the Open Source Programs Web!

Welcome to the Open Source Programs Web
## About

**Open Source Programs** is a project which aims towards simplifying the management work of the mentors and organizations. The goal is to make reviewing and notifying simpler, systematic and manageable. This will help in easy processing and hosting of the Open Source Programs be it a 4-week or a 6-month long program. This was proposed as an [original GSoC'20 project](https://summerofcode.withgoogle.com/organizations/4752039663370240/) by [Bismita Guha](https://github.com/bismitaguha) under the guidance of [Maybelline Burgos](https://github.com/mayburgos), [Monal Shadi](https://github.com/Monal5031), [Abha Wadjikar](https://github.com/abha224) and [Siddharth Venu](https://github.com/sidvenu) as mentors.
Expand Down
5 changes: 2 additions & 3 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ module.exports = {
items: [
{
label: 'Backend Docs',
href:
'https://github.com/anitab-org/open-source-programs-backend/wiki',
},
href: 'https://osp-backend-docs.surge.sh/',
}
],
},
{
Expand Down
12 changes: 0 additions & 12 deletions docs/src/pages/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,3 @@
align-items: center;
justify-content: center;
}

.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}

.featureImage {
height: 200px;
width: 200px;
}