We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20a10d6 commit 9cc7dceCopy full SHA for 9cc7dce
src/pages/ExploreSetPage/ExploreSetPage.tsx
@@ -10,6 +10,7 @@ import { useVote } from "@/hooks/queries/voting/useVote";
10
import { useUserVotes } from "@/hooks/queries/voting/useUserVotes";
11
import { useState } from "react";
12
import { useExplorableSets } from "./useExplorableSets";
13
+import { PageTitle } from "@/components/PageTitle/PageTitle";
14
15
export function ExploreSetPage() {
16
const { edition, basePath } = useFestivalEdition();
@@ -52,6 +53,7 @@ export function ExploreSetPage() {
52
53
54
return (
55
<div className="relative min-h-screen bg-gradient-to-b from-purple-900 to-black">
56
+ <PageTitle title={`Explore Sets - ${edition.name}`} />
57
<ExplorePageHeader
58
basePath={basePath}
59
editionName={edition.name}
0 commit comments