diff --git a/src/components/Apps.tsx b/src/components/Apps.tsx index f5bd91f..d6894f5 100644 --- a/src/components/Apps.tsx +++ b/src/components/Apps.tsx @@ -4,6 +4,7 @@ import React from "react"; import Image from 'next/image' import { motion } from "framer-motion"; + import Algorand from '@/images/logos/algorand.svg' import Casperlabs from '@/images/logos/casperlabs.svg' import Discourse from '@/images/logos/discourse.svg' diff --git a/src/components/Farmer.tsx b/src/components/Farmer.tsx index 486abe2..b3f7bda 100644 --- a/src/components/Farmer.tsx +++ b/src/components/Farmer.tsx @@ -2,6 +2,10 @@ import { Button } from "./Button"; import Image from "next/image"; +import { CpuChipIcon } from "@heroicons/react/24/solid"; +import { CircleStackIcon } from "@heroicons/react/24/solid"; +import { CurrencyDollarIcon } from "@heroicons/react/24/solid"; + const posts = [ { id: 1, @@ -12,6 +16,7 @@ const posts = [ description2: '', imageUrl: './images/3nodes.png', + icon: , }, { id: 2, @@ -21,6 +26,7 @@ const posts = [ description2: '', imageUrl: './images/capacity.png', + icon: , }, { id: 3, @@ -31,6 +37,7 @@ const posts = [ description2: '', imageUrl: './images/rewards.png', + icon: , }, ] @@ -77,12 +84,10 @@ export function FarmerPreview() { }} > -

- - - {post.title} - -

+
+ {post.icon} + {post.title} +
< div className="max-w-2/3">

{post.description1}

{post.description2}