Skip to content

Commit

Permalink
feat(intro-text): add more information to infotext
Browse files Browse the repository at this point in the history
  • Loading branch information
luhmann committed Mar 17, 2018
1 parent 6d76775 commit bc82250
Showing 1 changed file with 34 additions and 8 deletions.
42 changes: 34 additions & 8 deletions src/IntroText.re
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let make = _children => {
...component,
render: _self =>
<section className="text-grey-darkest p-1">
<p className="mb-4">
<p className="mb-6">
(
ReasonReact.stringToElement(
{| Want to enjoy a nice fresh brew with your favorite dinner?
Expand All @@ -14,14 +14,40 @@ let make = _children => {
)
)
</p>
<p>
(ReasonReact.stringToElement("Built using the"))
<p className="mb-4 text-sm">
(ReasonReact.stringToElement("Built using"))
(ReasonReact.stringToElement(" "))
<a
className="no-underline text-blue-light"
href="https://punkapi.com/documentation/v2">
(ReasonReact.stringToElement("PunkApi"))
</a>
<Link href="https://reasonml.github.io/">
...(ReasonReact.stringToElement("ReasonML"))
</Link>
(ReasonReact.stringToElement(", "))
<Link href="https://reasonml.github.io/reason-react/">
...(ReasonReact.stringToElement("ReasonReact"))
</Link>
(ReasonReact.stringToElement(" and "))
<Link href="https://tailwindcss.com/">
...(ReasonReact.stringToElement("Tailwind"))
</Link>
(ReasonReact.stringToElement(". Many thanks to "))
<Link href="https://punkapi.com/documentation/v2">
...(ReasonReact.stringToElement("PunkApi"))
</Link>
(
ReasonReact.stringToElement(
" for powering this project and providing the data."
)
)
</p>
<p className="mb-4 text-sm">
(
ReasonReact.stringToElement(
"This project was written as an excercise. You can access the source-code on "
)
)
<Link href="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/luhmann/reason-beer">
...(ReasonReact.stringToElement("Github"))
</Link>
(ReasonReact.stringToElement("."))
</p>
</section>
};

0 comments on commit bc82250

Please sign in to comment.