From c5b52050906f2971c109654fd9ed50ea8f8a12ac Mon Sep 17 00:00:00 2001 From: Janos <86970079+janosdebugs@users.noreply.github.com> Date: Wed, 10 Jan 2024 14:44:45 +0100 Subject: [PATCH] Fixes #242: Remove latest news section (#245) Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> --- src/components/Home/index.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/Home/index.tsx b/src/components/Home/index.tsx index 50485571..cd1aca4e 100644 --- a/src/components/Home/index.tsx +++ b/src/components/Home/index.tsx @@ -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[]; @@ -20,8 +19,6 @@ export default function Home({ recentPosts }: HomeProps) { - - ); }