Skip to content

Commit

Permalink
feat: add link to explore featured artworks
Browse files Browse the repository at this point in the history
  • Loading branch information
kyziq committed Jan 9, 2024
1 parent 1c3ce1a commit 74b09b1
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/pages/Home.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
import MoreArt from './MoreArt';
import Categories from '../components/Categories';
import { Link } from 'react-router-dom';
import { FaArrowRight } from 'react-icons/fa'; // Importing an arrow icon

const Home = () => {
return (
<div className="p-6">
<header className="text-2xl font-bold">ArtistryHub.</header>
<p className="text-gray-700">Explore our world of creative designs.</p>
<div className="flex justify-between items-center">
<header className="text-2xl font-bold">ArtistryHub.</header>
<Link
to="/artistry-hub/top-picks"
className="flex items-center text-lg font-medium text-blue-500 hover:text-blue-600 transition duration-300 ease-in-out"
>
Explore Featured Artworks <FaArrowRight className="ml-2" />
</Link>
</div>
<p className="text-gray-700 mt-2">
Explore our world of creative designs.
</p>

<Categories />

Expand Down

0 comments on commit 74b09b1

Please sign in to comment.