diff --git a/src/pages/TopPicks.jsx b/src/pages/TopPicks.jsx index d2ff08c..a68aada 100644 --- a/src/pages/TopPicks.jsx +++ b/src/pages/TopPicks.jsx @@ -1,5 +1,7 @@ +import { Image } from '@nextui-org/react'; import { Link } from 'react-router-dom'; import { allLists } from '../data/list'; +import { FaHeart } from 'react-icons/fa'; const Top = () => { // Combine all lists and sort by 'likes' in descending order @@ -9,30 +11,40 @@ const Top = () => { .slice(0, 9); return ( -
-

- Discover Masterpieces -

-

- Immerse yourself in our handpicked collection of the most beloved - artworks. Each piece is a window into a unique story, crafted by - visionary artists from various schools of art. Feel the pulse of - creativity and the depth of emotions captured in every brushstroke. -

-
- {sortedList.map((item) => ( -
- - {item.name} - -

{item.name}

-

Likes: {item.likes}

-
- ))} +
+
+

+ Discover Masterpieces +

+

+ Dive into a curated selection of our most celebrated artworks, ranked + by community love. These top 10 picks, brimming with creativity and + artistry, have captivated the hearts of our audience. Discover what + makes these pieces stand out in the world of art, each resonating with + a unique story and aesthetic appeal, and see why they've earned + their place at the top. +

+
+ {sortedList.map((item) => ( +
+ + {item.name} + +

{item.name}

+

+ + + +   + {item.likes} +

+
+ ))} +
);