diff --git a/src/pages/TopPicks.jsx b/src/pages/TopPicks.jsx index 436dcb8..d2ff08c 100644 --- a/src/pages/TopPicks.jsx +++ b/src/pages/TopPicks.jsx @@ -1,4 +1,4 @@ -import { Tooltip } from '@nextui-org/react'; +import { Link } from 'react-router-dom'; import { allLists } from '../data/list'; const Top = () => { @@ -6,38 +6,35 @@ const Top = () => { const sortedList = Object.values(allLists) .flat() .sort((a, b) => b.likes - a.likes) - .slice(0, 18); // Limit to top 18 items + .slice(0, 9); return ( -
-
ArtistryHub.
- -
-

Top Picks

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

+ 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}

+
+ ))}
); }; - export default Top;