Skip to content

Instantly share code, notes, and snippets.

@Ernesto-tha-great
Created July 8, 2022 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ernesto-tha-great/b8c979cfdc90dc7d9000d342fba41c86 to your computer and use it in GitHub Desktop.
Save Ernesto-tha-great/b8c979cfdc90dc7d9000d342fba41c86 to your computer and use it in GitHub Desktop.
import React from "react";
import { BiCheck } from "react-icons/bi";
import {
AiFillTwitterCircle,
AiFillLinkedin,
AiFillRedditCircle,
} from "react-icons/ai";
export default function FeedsPage({ feed }) {
return (
<div className="px-8 rounded-xl py-4 shadow-xl">
<img
className=" rounded-md w-full self-center bg-contain h-80"
src={`https://ipfs.infura.io/ipfs/${feed.coverImageHash}`}
alt="cover"
/>
<div className="flex justify-between flex-row py-4 border-borderWhiteGray dark:border-borderGray border-b-2">
<div>
<h3 className="text-2xl font-semibold dark:text-gray-600">
{feed.title}
</h3>
<p className="text-gray-600 font-semibold mt-4">
{feed.category} • {feed.date}
</p>
</div>
<div className="flex flex-row items-center mx-4 -mt-4">
<a
className="bg-transparent dark:text-[#9CA3AF] py-2 px-6 border rounded-lg border-blue-600 mr-6 text-blue-600 hover:bg-blue-600 hover:text-white"
href={`https://twitter.com/intent/tweet?text=${feed.title}&url=https://ipfs.infura.io/ipfs/${feed.coverImageHash}`}
target="_blank"
rel="noopener noreferrer"
>
<AiFillTwitterCircle />
</a>
<a
className="bg-transparent dark:text-[#9CA3AF] py-2 px-6 border rounded-lg border-blue-600 mr-6 text-blue-500 hover:bg-blue-600 hover:text-white"
href={`https://www.linkedin.com/shareArticle?mini=true&url=https://ipfs.infura.io/ipfs/${feed.coverImageHash}&title=${feed.title}&summary=${feed.description}&source=https://ipfs.infura.io/ipfs/${feed.coverImageHash}`}
target="_blank"
rel="noopener noreferrer"
>
<AiFillLinkedin />
</a>
<a
className="bg-transparent dark:text-[#9CA3AF] py-2 px-6 border rounded-lg border-red-600 mr-6 text-red-600 hover:bg-red-600 hover:text-white"
href={`https://www.reddit.com/submit?url=https://ipfs.infura.io/ipfs/${feed.coverImageHash}&title=${feed.title}`}
target="_blank"
rel="noopener noreferrer"
>
<AiFillRedditCircle />
</a>
</div>
</div>
<div className="flex mt-5 flex-row items-center ">
<div className="flex items-center font-semibold text-textSubTitle mt-1">
Author: {feed?.author?.slice(0, 12)}...
<BiCheck size="20px" color="green" className="ml-1" />
</div>
</div>
<p className="text-lg font-medium text-gray-600 mt-4">
{feed.description}
</p>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment