mirror of https://github.com/yewstack/yew
Add logo and update readme (#581)
This commit is contained in:
parent
bb7c042da4
commit
e8d6911046
|
@ -0,0 +1,7 @@
|
|||
<svg width="75" height="82" viewBox="0 0 75 82" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="38" cy="40" r="25" fill="#FFEFB8"/>
|
||||
<path d="M38.2373 41.0339L14 14" stroke="#444444" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M38.2373 41.0339L62.4746 14" stroke="#444444" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M38.2373 41.0339L38.2373 69" stroke="#444444" stroke-width="6" stroke-linecap="round"/>
|
||||
<circle cx="38" cy="41" r="7" fill="#FFD707" stroke="#444444" stroke-width="4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 518 B |
34
README.md
34
README.md
|
@ -1,10 +1,34 @@
|
|||
[](https://travis-ci.org/DenisKolodin/yew)
|
||||
[](https://gitter.im/yewframework/Lobby "Gitter chat")
|
||||
[](https://blog.rust-lang.org/2019/05/23/Rust-1.35.0.html)
|
||||
<div align="center">
|
||||
|
||||
# Yew
|
||||
<img src="https://github.com/jstarry/yew/blob/update-readme/.static/yew.svg" width="150" />
|
||||
|
||||
**Yew** (pronounced `/juː/`, the same way as "you") is a modern Rust framework inspired by Elm and ReactJS for
|
||||
<h1>
|
||||
Yew
|
||||
<a href="https://crates.io/crates/yew"><img alt="Build Status" src="https://img.shields.io/crates/v/yew.svg"/></a>
|
||||
</h1>
|
||||
|
||||
<p>
|
||||
<strong>Rust / Wasm UI framework</strong>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="https://travis-ci.com/yewstack/yew"><img alt="Build Status" src="https://travis-ci.com/yewstack/yew.svg?branch=master"/></a>
|
||||
<a href="https://gitter.im/yewframework/Lobby"><img alt="Gitter Chat" src="https://badges.gitter.im/yewframework.svg"/></a>
|
||||
<a href="https://blog.rust-lang.org/2019/05/23/Rust-1.35.0.html"><img alt="Rustc Version 1.35+" src="https://img.shields.io/badge/rustc-1.35+-lightgray.svg"/></a>
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
<a href="#running-the-examples">Examples</a>
|
||||
<span> | </span>
|
||||
<a href="https://github.com/yewstack/yew/blob/master/CHANGELOG.md">Changelog</a>
|
||||
<span> | </span>
|
||||
<a href="https://github.com/yewstack/yew/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
## Overview
|
||||
|
||||
**Yew** is a modern Rust framework inspired by Elm and React for
|
||||
creating multi-threaded frontend apps with WebAssembly.
|
||||
|
||||
The framework supports ***multi-threading & concurrency*** out of the box.
|
||||
|
|
Loading…
Reference in New Issue