Skip to content

Commit b0d8b90

Browse files
authored
fix: missing meta tags (#116)
1 parent 20d9439 commit b0d8b90

File tree

6 files changed

+23
-0
lines changed

6 files changed

+23
-0
lines changed

apps/dashboard/src/app/(splash)/login/page.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import { GoogleIcon } from "../../../components/icons/GoogleIcon";
66
export const metadata = {
77
title: "Sign in - OG Studio",
88
openGraph: {
9+
siteName: "OG Studio",
10+
images:
11+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
12+
type: "website",
913
url: "https://ogstudio.app/login",
1014
},
1115
};

apps/dashboard/src/app/(splash)/my-images/page.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import { MyImagesSplash } from "../../../components/Splash/MyImagesSplash";
33
export const metadata = {
44
title: "My Open Graph images - OG Studio",
55
openGraph: {
6+
siteName: "OG Studio",
7+
images:
8+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
9+
type: "website",
610
url: "https://ogstudio.app/my-images",
711
},
812
};

apps/dashboard/src/app/(splash)/profile/page.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import { Profile } from "../../../components/Profile";
44
export const metadata: Metadata = {
55
title: "Profile - OG Studio",
66
openGraph: {
7+
siteName: "OG Studio",
8+
images:
9+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
710
type: "profile",
811
url: "https://ogstudio.app/profile",
912
},

apps/dashboard/src/app/(splash)/templates/page.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ export const metadata = {
55
description:
66
"Free, pre-made Open Graph image templates. Create static or dynamic OG (Open Graph) images with an intuitive, Figma-like visual editor.",
77
openGraph: {
8+
siteName: "OG Studio",
9+
images:
10+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
11+
type: "website",
812
url: "https://ogstudio.app/templates",
913
},
1014
};

apps/dashboard/src/app/(splash)/tools/open-graph-image-checker/page.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ export const metadata: Metadata = {
88
description:
99
"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.",
1010
openGraph: {
11+
siteName: "OG Studio",
12+
images:
13+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
14+
type: "website",
1115
url: "https://ogstudio.app/tools/open-graph-image-checker",
1216
},
1317
};

apps/dashboard/src/app/editor/page.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import { Editor } from "../../components/Editor";
33
export const metadata = {
44
title: "Editor - OG Studio",
55
openGraph: {
6+
siteName: "OG Studio",
7+
images:
8+
"https://github.com/QuiiBz/ogstudio/blob/main/assets/builder.jpeg?raw=true",
9+
type: "website",
610
url: "https://ogstudio.app/editor",
711
},
812
};

0 commit comments

Comments
 (0)