Skip to content

Commit

Permalink
Fixes #242: Remove latest news section (#245)
Browse files Browse the repository at this point in the history
Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com>
  • Loading branch information
Janos authored Jan 10, 2024
1 parent 51f2f0d commit c5b5205
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ 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 LatestNews, { RecentPost } from "../LatestNews";
import { RecentPost } from "../LatestNews";

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

0 comments on commit c5b5205

Please sign in to comment.