Skip to content

Commit 3cfca8d

Browse files
committed
add metadata
1 parent 199da7f commit 3cfca8d

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

public/og-image.png

1.53 MB
Loading

src/app/layout.tsx

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,32 @@ import "../styles/manga-theme.css";
55
import "./globals.css";
66

77
export const metadata: Metadata = {
8+
metadataBase: new URL("https://storytomanga.com"),
89
title: "Story to Manga Machine",
910
description:
10-
"Transform your stories into manga and comic pages using Nano Banana (Gemini 2.5 Flash Image)",
11+
"Transform stories into manga and comic pages with IA",
12+
openGraph: {
13+
title: "Story to Manga",
14+
description:
15+
"Transform stories into manga and comic pages with IA",
16+
url: "https://storytomanga.com",
17+
images: [
18+
{
19+
url: "/og-image.png",
20+
width: 1200,
21+
height: 630,
22+
alt: "Story to Manga - Transform stories into manga",
23+
},
24+
],
25+
type: "website",
26+
},
27+
twitter: {
28+
card: "summary_large_image",
29+
title: "Story to Manga",
30+
description:
31+
"Transform stories into manga and comic pages with IA",
32+
images: ["/og-image.png"],
33+
},
1134
};
1235

1336
export default function RootLayout({

0 commit comments

Comments
 (0)