We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1386ba2 commit 68c2d8bCopy full SHA for 68c2d8b
src/app/domain/[slug]/page.tsx
@@ -22,12 +22,15 @@ export async function generateMetadata({
22
const domain = domains.find((d) => d.slug === slug);
23
if (!domain) return { title: "Domaine introuvable" };
24
25
- return pageMetadata({
26
- title: `${domain.name} | Carrières Efficience IT`,
27
- description: domain.description,
28
- path: `/domain/${slug}`,
29
- absoluteTitle: true,
30
- });
+ return {
+ ...pageMetadata({
+ title: `${domain.name} | Carrières Efficience IT`,
+ description: domain.description,
+ path: `/domain/${slug}`,
+ absoluteTitle: true,
31
+ }),
32
+ robots: { index: false },
33
+ };
34
}
35
36
export default async function DomainPage({ params }: DomainPageProps) {
0 commit comments