This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace nats slice with wasm whitepaper slice on homepage (#1029)
* Replace nats slice with wasm whitepaper slice on homepage * Add background image and tweak image styling * Use correct text * Implement comments * Update link styling
- Loading branch information
1 parent
fe8c079
commit 23835d6
Showing
12 changed files
with
210 additions
and
296 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
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,57 @@ | ||
// @flow | ||
import * as React from 'react'; | ||
|
||
import styles from './style.css'; | ||
import titleImg from './images/title.png'; | ||
import whitepaperImg from './images/whitepaper.png'; | ||
|
||
const WasmWhitepaperSlice = () => { | ||
return ( | ||
<div className={`${styles.WasmWhitepaperSliceWrapper}`}> | ||
<div className={styles.WasmWhitepaperSliceContent}> | ||
<div className={styles.WasmWhitepaperSlice}> | ||
<div className={styles.WasmWhitepaperSliceText}> | ||
<img | ||
className={styles.WasmWhitepaperSliceTitleImage} | ||
src={titleImg} | ||
alt="text reading: We Love Tech" | ||
/> | ||
<div className={styles.WasmWhitepaperSliceTextContent}> | ||
<div className={styles.WasmWhitepaperSliceBodyheader}> | ||
<h3> | ||
Multi-cloud platforms are here: How WebAssembly, NATS and wasmCloud can move us | ||
beyond the cloud | ||
</h3> | ||
</div> | ||
<div className={styles.WasmWhitepaperSliceBodySubHeader}> | ||
<h4> | ||
With contributions from Liam Randall, Cosmonic’s CEO and Derek Collison, CEO of | ||
Synadia and creator of{' '} | ||
<a href="http://nats.io/" className={styles.WasmWhitepaperSliceBodyLink}> | ||
NATS.io | ||
</a> | ||
, our latest white paper written by our Chief Scientist, Stuart Harris, maps out | ||
the journey to a truly resilient multi-cloud platform. | ||
</h4> | ||
</div> | ||
<div> | ||
<a href="https://bit.ly/393vkLn" className={styles.WasmWhitepaperSliceLink}> | ||
Download White Paper | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={styles.WasmWhitepaperSliceImageWrapper}> | ||
<img | ||
className={styles.WasmWhitepaperSliceImage} | ||
src={whitepaperImg} | ||
alt="An illustration of the WASM whitepaper" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default WasmWhitepaperSlice; |
Oops, something went wrong.