Footer.re (516B)
1 module Styles = { 2 open Css; 3 4 let footer = 5 style([ 6 width(`percent(100.0)), 7 paddingTop(`px(30)), 8 marginTop(`px(0)), 9 marginLeft(`auto), 10 marginRight(`auto), 11 marginBottom(`em(1.0)), 12 maxWidth(`em(50.0)), 13 ]); 14 }; 15 16 [@react.component] 17 let make = () => 18 <footer className=Styles.footer> 19 <p> {ReasonReact.string("See you sooner :)")} </p> 20 <p> 21 {ReasonReact.string("@16/11/2019 ")} 22 <Link text="ybbond" href="https://ybbond.dev/" /> 23 </p> 24 </footer>;