Skip to content

Commit

Permalink
Revert "Fixes #242: Remove latest news section (#245)" (#247)
Browse files Browse the repository at this point in the history
This reverts commit c5b5205.
  • Loading branch information
cube2222 authored Jan 10, 2024
1 parent e511615 commit a17e373
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import Hero from "../Hero";
import Goals from "../Goals";
import Supporters from "../Supporters";
import FAQ from "../FAQ";
import HowToSupport from "../HowToSupport";
import HowToContribute from "../HowToContribute";
import { RecentPost } from "../LatestNews";
import LatestNews, { RecentPost } from "../LatestNews";

type HomeProps = {
recentPosts: RecentPost[];
Expand All @@ -19,6 +20,8 @@ export default function Home({ recentPosts }: HomeProps) {
<HowToContribute />
<FAQ />
<Supporters />
<HowToSupport />
<LatestNews recentPosts={recentPosts} />
</Layout>
);
}

0 comments on commit a17e373

Please sign in to comment.