In the recent update of Next JS 13 they introduced a new way to handle meta tags which was a different way as the traditional method by creating Next Head and writing the usual html meta tag. in the new method we create a metadata object like way. but i haven't found a way to use open graph metadata.
export const metadata = {
title:
" this is the title of the web",
description:
" this is the description section",
ogtitle: "this is open graph title for testing", // i thought this could be the case
};
so how can i use open graph in the metadata?