Hi @kanzoonrkz,
I took and look and tested this out. I think the issue is that you are using Images
with a capital "I". Try it with a lowercase "i" and let me know if it works for you:
export async function generateMetadata({
params,
}: {
params: { slug: string };
}) {
const page = await queryMarketingPage(params.slug);
return {
title: page.data.meta_title,
description: page.data.meta_description,
openGraph: {
title: page.data.meta_title,
description: page.data.meta_description,
images: prismic.asImageSrc(page.data.meta_image),
},
};
}