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 14367d1 commit addf9b2Copy full SHA for addf9b2
app/(root)/jobs/page.tsx
@@ -11,6 +11,11 @@ import { getCountryFilters, getJobs } from "@/lib/actions/job.action";
11
import { JobPageFilters } from "@/constants/filters";
12
13
import type { SearchParamsProps } from "@/types";
14
+import type { Metadata } from "next";
15
+
16
+export const metadata: Metadata = {
17
+ title: "Jobs — DevOverflow",
18
+};
19
20
const Page = async ({ searchParams }: SearchParamsProps) => {
21
const CountryFilters = await getCountryFilters();
0 commit comments