Skip to content

Commit 47f08d6

Browse files
committed
content changes
1 parent 80d133f commit 47f08d6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/CommunityContent.res

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module LinkCard = {
2323
<img className="object-cover w-full h-40" src=link.image alt="" />
2424
<div className="p-2 grow">
2525
<h3 className="font-semibold text-14 grow-0"> {React.string(link.title)} </h3>
26-
// <p className="mb-2 text-12 grow truncate"> {React.string(link.description)} </p>
26+
<p className="mb-2 text-12 grow truncate"> {React.string(link.description)} </p>
2727
</div>
2828
<p className="text-14 p-2 grow-0 text-gray-70">
2929
{React.string(link.url->simplifyUrl->Option.getOr(""))}
@@ -53,6 +53,14 @@ module LinkCards = {
5353
@react.component
5454
let make = () => {
5555
<div>
56+
<h1 className="hl-1 mb-6"> {"Community Content"->React.string} </h1>
57+
<p className="md-p md:leading-5 tracking-[-0.015em] text-gray-80 md:text-16 mb-16">
58+
{React.string(
59+
"These articles, videos, and resources are created by the amazing ReScript community.",
60+
)}
61+
<br />
62+
{React.string("If you have a resource you'd like to share, please feel free to submit a PR!")}
63+
</p>
5664
<LinkCards />
5765
</div>
5866
}

0 commit comments

Comments
 (0)