diff --git a/src/features/Posts/Components/PostCard/BountyCard/BountyCard.tsx b/src/features/Posts/Components/PostCard/BountyCard/BountyCard.tsx index 1fe0a75..382aa4b 100644 --- a/src/features/Posts/Components/PostCard/BountyCard/BountyCard.tsx +++ b/src/features/Posts/Components/PostCard/BountyCard/BountyCard.tsx @@ -23,6 +23,11 @@ interface Props { bounty: BountyCardType } export default function BountyCard({ bounty }: Props) { + + const handleApply = () => { + + } + return (
@@ -37,7 +42,7 @@ export default function BountyCard({ bounty }: Props) {
- @@ -60,6 +65,11 @@ export default function BountyCard({ bounty }: Props) { {bounty.applicants_count} Applicants + + + ) diff --git a/src/features/Posts/pages/FeedPage/FeedPage.tsx b/src/features/Posts/pages/FeedPage/FeedPage.tsx index ffd33b3..f4283b8 100644 --- a/src/features/Posts/pages/FeedPage/FeedPage.tsx +++ b/src/features/Posts/pages/FeedPage/FeedPage.tsx @@ -6,7 +6,7 @@ import PostsList from '../../Components/PostsList/PostsList' import TrendingCard from '../../Components/TrendingCard/TrendingCard' import PopularCategories from './PopularCategories/PopularCategories' import SortBy from './SortBy/SortBy' -import styles from './styles.module.css' +import styles from './styles.module.scss' export default function FeedPage() { @@ -30,7 +30,7 @@ export default function FeedPage() { return (