forked from machine-learning-exchange/mlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LFAI logo to sidebar (machine-learning-exchange#119)
* Add lfai logo to sidebar Signed-off-by: Andrew-Butler <[email protected]> * Add LFAI branding and legal Signed-off-by: Andrew-Butler <[email protected]> * Align text and remove redundant branding Signed-off-by: Andrew-Butler <[email protected]> * Change link color, add branding Signed-off-by: Andrew-Butler <[email protected]> * Change landing page text Signed-off-by: Andrew-Butler <[email protected]>
- Loading branch information
1 parent
ee36211
commit 0a539e8
Showing
16 changed files
with
208 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2021 IBM Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import React from 'react'; | ||
import Link from './Link' | ||
|
||
export default function PageFooter() { | ||
return ( | ||
<h5 className="footer-text"> | ||
Copyright © 2021 Machine Learning eXchange The Linux Foundation®. | ||
All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. | ||
For a list of trademarks of The Linux Foundation, please see our <Link to="https://www.linuxfoundation.org/trademark-usage"> Trademark Usage </Link> | ||
page. | ||
Linux is a registered trademark of Linus Torvalds. | ||
<Link to="https://www.linuxfoundation.org/privacy"> Privacy Policy </Link> | ||
and | ||
<Link to="https://www.linuxfoundation.org/terms"> Terms of Use </Link>. | ||
</h5> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2021 IBM Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import React, { useContext } from 'react'; | ||
import StoreContext from '../lib/stores/context' | ||
import Hero from '../components/Hero' | ||
import { SET_ACTIVE_PAGE } from '../lib/stores/pages'; | ||
import Link from '../components/Link' | ||
import PageFooter from '../components/PageFooter'; | ||
import Paper from '@material-ui/core/Paper' | ||
|
||
export default function LandingPage() { | ||
const { store, dispatch } = useContext(StoreContext) | ||
const { active } = store.pages | ||
|
||
if (active !== 'external-links') | ||
dispatch({ type: SET_ACTIVE_PAGE, page: 'external-links' }) | ||
|
||
return ( | ||
<div className="links-page"> | ||
<Hero | ||
title={"Join the Conversation"} | ||
subtitle=" " | ||
> | ||
</Hero> | ||
<div className="upload-wrapper"> | ||
<Paper className="upload-form-wrapper"> | ||
<h3 className="links-page-text"> | ||
Slack: <Link to="https://lfaifoundation.slack.com/archives/C0264LKNH63"> ml-exchange </Link> | ||
<br/> | ||
Github: <Link to="https://github.com/machine-learning-exchange"> Machine Learning eXchange (MLX) </Link> | ||
</h3> | ||
</Paper> | ||
</div> | ||
<PageFooter/> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.