Skip to content

Commit

Permalink
Fix viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Nov 17, 2024
1 parent b2e3250 commit 9a2921b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/web/src/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export function links() {

export const meta: MetaFunction = () => [
{ charset: "utf-8" },
{ viewport: "width=device-width, initial-scale=1" },
{
name: "viewport",
content: "width=device-width,initial-scale=1",
},
{ title: SITE_NAME },
{ name: "title", content: SITE_NAME },
{ name: "description", content: SITE_DESCRIPTION },
Expand All @@ -55,7 +58,7 @@ export const meta: MetaFunction = () => [
{ property: "og:description", content: SITE_DESCRIPTION },
{ property: "og:url", content: SITE_URL },
{ property: "og:image", content: `${SITE_URL}/opengraph-image.webp` },
{ name: "twitter:card", content: "summary" },
{ name: "twitter:card", content: "summary_large_image" },
{ name: "twitter:image", content: `${SITE_URL}/opengraph-image.webp` },
{ name: "twitter:site", content: SOCIAL_TWITTER },
];
Expand Down

0 comments on commit 9a2921b

Please sign in to comment.