Skip to content

Commit addf9b2

Browse files
committed
Implemented static metadata for jobs page
1 parent 14367d1 commit addf9b2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/(root)/jobs/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ import { getCountryFilters, getJobs } from "@/lib/actions/job.action";
1111
import { JobPageFilters } from "@/constants/filters";
1212

1313
import type { SearchParamsProps } from "@/types";
14+
import type { Metadata } from "next";
15+
16+
export const metadata: Metadata = {
17+
title: "Jobs — DevOverflow",
18+
};
1419

1520
const Page = async ({ searchParams }: SearchParamsProps) => {
1621
const CountryFilters = await getCountryFilters();

0 commit comments

Comments
 (0)