fixed metadata in report page

This commit is contained in:
Alibek 2024-03-18 17:30:09 +06:00
parent 779f37a1a3
commit 36896b1fad

View File

@ -6,7 +6,6 @@ import ReportInformation from "@/widgets/report-details/ReportInformation/Report
import ReportImages from "@/widgets/report-details/ReportImages/ReportImages";
import dynamic from "next/dynamic";
import BreadCrumbs from "@/features/BreadCrumbs/BreadCrumbs";
import NotFound from "@/widgets/NotFound/NotFound";
import { apiInstance } from "@/shared/config/apiConfig";
const DynamicMap = dynamic(
@ -26,11 +25,11 @@ export async function generateMetadata({
);
return {
title: `KG ROAD | ${response.data.location[0].address}`,
description: response.data.description,
title: `KG ROAD | ${response.data.description}`,
description: `${response.data.location[0].address}, ${response.data.description}`,
openGraph: {
title: `KG ROAD | ${response.data.location[0].address}`,
description: response.data.description,
title: `KG ROAD | ${response.data.description}`,
description: `${response.data.location[0].address}, ${response.data.description}`,
images: [response.data.image[0].image],
type: "article",
},