Move "Media About Morphir" panels to "Morphir Homepage"
- Dominant language
- Rust
- Stars
- 209
- Forks
- 65
- Avg merge
- 8h 55m
- Merged PRs (30d)
- 126
Description
## Move "Media About Morphir" panels to "Morphir Homepage"
- [ ] Create branch `move-media-to-home` on fork https://github.com/ronaldssebalamu/morphir
- This is where the work for #156 will be committed before a pull request is raised
## Scope of Work
- [ ] Move [Media About Morphir](https://morphir.finos.org/docs/media) panels to [Morphir Homepage](https://morphir.finos.org/).
- The microsite `media` content can be found as Markdown here https://github.com/finos/morphir/blob/main/docs/media.md
- [ ] Remove [Media About Morphir](https://morphir.finos.org/docs/media) from Morphir Microsite Navigation.
- [ ] Remove [Media About Morphir](https://github.com/finos/morphir/blob/main/docs/media.md) Markdown from Morphir project repo.
### Media About Morphir
- The `media` content can be found in the Morphir repo `docs` folder here ...
https://github.com/finos/morphir/blob/main/docs/media.md
- This is the page to be moved to the hompage and depricated.

### Morphir Homepage

### Initial Guidance
- The `homepage` content of the Morphir website is found in the Docusaurus project here `website/src/pages/index.tsx`
- The following section at `line 36` renders the homepage content as JSX components.
```
export default function Home(): JSX.Element {
return (
)
}
```
- A new component should be added to `` for rendering the moved `media` content
- Create a new component called `` in `website/src/components` and add to ``
### Component and Homepage Example Scaffold
- The following is a scaffold for creating a new `` component
```
import React from 'react'
export default function MediaPanel(): JSX.Element {
return (
Hello World
)
}
```
- The following is scaffold for adding the `` component to the homepage
```
export default function Home(): JSX.Element {
return (
)
}
```
Contributor guide
Assessment
This issue has not been assessed yet.