github.com/wfusion/gofusion@v1.1.14/common/infra/watermill/docs/layouts/index.html (about) 1 {{ define "title"}} {{ .Site.Title}} {{end}} 2 {{ define "header"}} {{ partial "header" .}} {{end}} 3 {{ define "main"}} 4 5 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> 6 7 <div id="main"> 8 <div id="hero"> 9 <h1>{{.Title}}</h1> 10 <p>Go library for building event-driven applications.</p> 11 </div> 12 <div id="action-buttons"> 13 <a class="button primary big" href="{{ "/docs/getting-started/" | relURL }}" onclick="ga('send', 'event', 'watermill', 'open_getting_started');">Getting started</a> 14 <a class="button outline big" href="https://github.com/ThreeDotsLabs/watermill/" onclick="ga('send', 'event', 'watermill', 'open_github');">View on Github</a> 15 </div> 16 <div id="kube-features"> 17 <div class="row gutters"> 18 <div class="col col-4 item"> 19 <figure style="font-size: 48px;"> 20 <i class="fas fa-hand-spock"></i> 21 </figure> 22 <h3>Easy to use</h3> 23 <p>Our goal was to create a tool which is easy to understand, even by junior developers.</p> 24 </div> 25 <div class="col col-4 item"> 26 <figure style="font-size: 48px;"> 27 <i class="fas fa-globe-americas"></i> 28 </figure> 29 <h3>Universal</h3> 30 <p>It doesn't matter if you want to do Event-driven architecture, CQRS, Event Sourcing or just stream MySQL Binlog to Kafka.</p> 31 </div> 32 <div class="col col-4 item"> 33 <figure style="font-size: 48px;"> 34 <i class="fas fa-fighter-jet"></i> 35 </figure> 36 <h3>Fast</h3> 37 <p>Watermill was designed to process hundreds of thousands of messages per second.</p> 38 </div> 39 </div> 40 <div class="row gutters align-center"> 41 <div class="col col-4 item"> 42 <figure style="font-size: 48px;"> 43 <i class="fas fa-expand-arrows-alt"></i> 44 </figure> 45 <h3>Flexible</h3> 46 <p>Every component is built in a way that allows you to configure it for your needs. You can also implement your own middlewares for the router.</p> 47 </div> 48 <div class="col col-4 item"> 49 <figure style="font-size: 48px;"> 50 <i class="fas fa-mountain"></i> 51 </figure> 52 <h3>Resilient</h3> 53 <p>Watermill is using proven technologies and has a strong unit and integration tests coverage for the critical areas.</p> 54 </div> 55 </div> 56 57 <br> 58 <div class="message" data-component="message"> 59 You can find a detailed explanation of why we've built Watermill in <a href="https://threedots.tech/post/introducing-watermill/">our <i>Introducing Watermill</i> blog post</a>. 60 </div> 61 </div> 62 </div> 63 </div> 64 {{ end }} 65 {{ define "footer"}} {{ partial "footer" .}} {{end}}