diff --git a/src/graphql/index.tsx b/src/graphql/index.tsx
index 1bd759e..65508c4 100644
--- a/src/graphql/index.tsx
+++ b/src/graphql/index.tsx
@@ -182,7 +182,7 @@ export type AllCategoriesQuery = { __typename?: 'Query', allCategories: Array<{
export type ExploreProjectsQueryVariables = Exact<{ [key: string]: never; }>;
-export type ExploreProjectsQuery = { __typename?: 'Query', allCategories: Array<{ __typename?: 'Category', id: number, title: string, project: Array<{ __typename?: 'Project', id: number, thumbnail_image: string, title: string, votes_count: number }> }>, newProjects: Array<{ __typename?: 'Project', id: number, title: string, thumbnail_image: string, votes_count: number, category: { __typename?: 'Category', title: string, id: number } }> };
+export type ExploreProjectsQuery = { __typename?: 'Query', allCategories: Array<{ __typename?: 'Category', id: number, title: string, project: Array<{ __typename?: 'Project', id: number, thumbnail_image: string, title: string, votes_count: number, category: { __typename?: 'Category', title: string, id: number } }> }>, newProjects: Array<{ __typename?: 'Project', id: number, title: string, thumbnail_image: string, votes_count: number, category: { __typename?: 'Category', title: string, id: number } }> };
export type HottestProjectsQueryVariables = Exact<{ [key: string]: never; }>;
@@ -384,6 +384,10 @@ export const ExploreProjectsDocument = gql`
thumbnail_image
title
votes_count
+ category {
+ title
+ id
+ }
}
}
newProjects {
diff --git a/src/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx b/src/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
index ebf54a8..079c372 100644
--- a/src/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
+++ b/src/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
@@ -14,18 +14,24 @@ export default function ProjectsSection() {
{Array(3).fill(0).map((_, idx) =>