Skip to content

Commit

Permalink
fix: missing meta tags (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuiiBz authored Jan 4, 2025
1 parent 20d9439 commit b0d8b90
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/dashboard/src/app/(splash)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import { GoogleIcon } from "../../../components/icons/GoogleIcon";
export const metadata = {
title: "Sign in - OG Studio",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "website",
url: "https://ogstudio.app/login",
},
};
Expand Down
4 changes: 4 additions & 0 deletions apps/dashboard/src/app/(splash)/my-images/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { MyImagesSplash } from "../../../components/Splash/MyImagesSplash";
export const metadata = {
title: "My Open Graph images - OG Studio",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "website",
url: "https://ogstudio.app/my-images",
},
};
Expand Down
3 changes: 3 additions & 0 deletions apps/dashboard/src/app/(splash)/profile/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { Profile } from "../../../components/Profile";
export const metadata: Metadata = {
title: "Profile - OG Studio",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "profile",
url: "https://ogstudio.app/profile",
},
Expand Down
4 changes: 4 additions & 0 deletions apps/dashboard/src/app/(splash)/templates/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ export const metadata = {
description:
"Free, pre-made Open Graph image templates. Create static or dynamic OG (Open Graph) images with an intuitive, Figma-like visual editor.",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "website",
url: "https://ogstudio.app/templates",
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ export const metadata: Metadata = {
description:
"Free tool to check Open Graph meta tags of any website. Create static or dynamic OG (Open Graph) images with an intuitive, Figma-like visual editor.",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "website",
url: "https://ogstudio.app/tools/open-graph-image-checker",
},
};
Expand Down
4 changes: 4 additions & 0 deletions apps/dashboard/src/app/editor/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { Editor } from "../../components/Editor";
export const metadata = {
title: "Editor - OG Studio",
openGraph: {
siteName: "OG Studio",
images:
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
type: "website",
url: "https://ogstudio.app/editor",
},
};
Expand Down

0 comments on commit b0d8b90

Please sign in to comment.