Skip to content

Commit

Permalink
fix: 馃悰 meta images not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
growupanand committed Feb 3, 2024
1 parent f8b5e1e commit b19cfa1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions apps/web/src/app/(publicPage)/(landingPage)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const metadata: Metadata = {
title: {
absolute: "Experience The New Magic Of Rich Conversational Forms",
},
images: [`/api/og`],
},
};

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const metadata: Metadata = {
"Transform your standard forms into engaging conversations with ConvoForm. Our easy-to-use, secure, and responsive form builder makes data collection more interactive.",
url: "https://www.convoform.com",
type: "website",
images: new URL("https://www.convoform.com/api/og"),
images: [`/api/og`],
},
};

Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/app/robots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
allow: ["/", "/api/og/*"],
disallow: ["/private/", "/auth/"],
},
sitemap: "https://convoform.com/sitemap.xml",
sitemap: "https://www.convoform.com/sitemap.xml",
};
}

0 comments on commit b19cfa1

Please sign in to comment.