We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
move-media-to-home
media
docs
homepage
website/src/pages/index.tsx
line 36
export default function Home(): JSX.Element { return ( <Layout description={'Morphir Home Page'}> <HomepageHeader /> <main> <HomepageFeatures /> </main> </Layout> ) }
<main>
<MediaPanel>
website/src/components
<MedialPanel>
import React from 'react' export default function MediaPanel(): JSX.Element { return ( <div> Hello World </div> ) }
export default function Home(): JSX.Element { return ( <Layout description={'Morphir Home Page'}> <HomepageHeader /> <main> <HomepageFeatures /> <MediaPanel /> </main> </Layout> ) }
The text was updated successfully, but these errors were encountered:
ronaldssebalamu
No branches or pull requests
Move "Media About Morphir" panels to "Morphir Homepage"
move-media-to-home
on fork https://github.com/ronaldssebalamu/morphirScope of Work
media
content can be found as Markdown here https://github.com/finos/morphir/blob/main/docs/media.mdMedia About Morphir
media
content can be found in the Morphir repodocs
folder here ...https://github.com/finos/morphir/blob/main/docs/media.md
Morphir Homepage
Initial Guidance
homepage
content of the Morphir website is found in the Docusaurus project herewebsite/src/pages/index.tsx
line 36
renders the homepage content as JSX components.<main>
for rendering the movedmedia
content<MediaPanel>
inwebsite/src/components
and add to<main>
Component and Homepage Example Scaffold
<MedialPanel>
component<MedialPanel>
component to the homepageThe text was updated successfully, but these errors were encountered: