Meta tags
Schema
Open Graph image
Make sure you have updated the content.js file with your own information and the baseURL variable in the config.js file.
src/app/{page}/page.tsx
export async function generateMetadata() {
const title = home.title;
const description = home.description;
const ogImage = `https:///api/og/generate?title=${encodeURIComponent(title)}`;
...
};