commit ba922822942c10f909945153416adc1eadf547b5 parent 6e53a32d1f8d3c7033550d3b3452f7efe6855628 Author: Yohanes Bandung <bandungpenting@gmail.com> Date: Fri, 30 Aug 2019 01:16:32 +0700 refactor(Poems) => WIP announcement Diffstat:
M | src/PoemsScene.re | | | 13 | ++++++++++++- |
M | src/components/Footer.re | | | 2 | +- |
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/PoemsScene.re b/src/PoemsScene.re @@ -1,4 +1,15 @@ [@react.component] let make = () => { - <React.Fragment> <p> {ReasonReact.string("Poems")} </p> </React.Fragment>; + <React.Fragment> + <p> + {ReasonReact.string( + "Poems have not been implemented on this web version :(", + )} + </p> + <p> + {ReasonReact.string("If you want to read them, ")} + <Link text="click here!" href="https://ybbond.github.io" /> + </p> + <p> {ReasonReact.string("Then, check the 'literature'.")} </p> + </React.Fragment>; }; diff --git a/src/components/Footer.re b/src/components/Footer.re @@ -18,7 +18,7 @@ let make = () => <footer className=Styles.footer> <p> {ReasonReact.string("See you sooner :)")} </p> <p> - {ReasonReact.string("@19/08/2019 ")} + {ReasonReact.string("@30/08/2019 ")} <Link text="ybbond" href="https://github.com/ybbond/ybbond-reason" /> </p> </footer>;