Skip to content

Commit

Permalink
task: remove Carnival banner from project page
Browse files Browse the repository at this point in the history
  • Loading branch information
ipapandinas committed Jan 11, 2025
1 parent a5e59f4 commit 4d57fe0
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions app/projects/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import PaginatedTable from "@/components/table/paginated-table";
import { DefaultFiltersProvider } from "@/components/providers/filters";
import { SelectFilterConfig } from "@/components/filters/config";
import Toolbar from "@/components/filters/toolbar";
import KudosWeeksBanner from "@/components/kudos-weeks-banner";
import { DEFAULT_PAGINATION } from "@/data/fetch";
import { TECHNOLOGY_KEY } from "@/data/filters";
import { fetchProjectTasks } from "@/lib/api/tasks";
Expand Down Expand Up @@ -93,19 +92,6 @@ export default async function SingleProjectPage(props: IProps) {
</div>
</section>

{metrics.certifiedTotal > 0 && (
<section className={"mt-20 " + container()}>
<KudosWeeksBanner>
♨️ <strong className="capitalize">{infos.name}</strong> participates
to <strong>Kudos Carnival</strong>! -{" "}
<strong>From Nov 1 to Dec 15</strong>:
<br />
Level up your contributions, solve key tasks, and rise up the
leaderboard!
</KudosWeeksBanner>
</section>
)}

{infos.richText && (
<section className={"mt-12 mb-4 " + container()}>
<ProjectAbout richText={infos.richText} />
Expand Down

0 comments on commit 4d57fe0

Please sign in to comment.