Skip to content

Commit

Permalink
add: og
Browse files Browse the repository at this point in the history
  • Loading branch information
m1m0zzz committed Aug 25, 2024
1 parent 0e33632 commit ff314c8
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,32 @@ import "./globals.css";

const noteSansJP = Noto_Sans_JP({ subsets: ["latin"] });

const title = "mmz_tools | Ableton Racks Pack"
const description = "Ableton Live Racks mmz_tools"
const siteUrl = "https://m1m0zzz.github.io/mmz_tools/"
const imageUrl = siteUrl + "preview.png"

export const metadata: Metadata = {
title: "mmz_tools",
description: "Ableton Live Racks mmz_tools",
title: title,
description: description,
keywords: ["Music", "DTM", "Ableton", "Live", "Plugin"],
openGraph: {
type: "website",
url: siteUrl,
title: title,
description: description,
siteName: "mmz_tools",
images: [{
url: imageUrl,
}],
},
twitter: {
title: title,
description: description,
card: "summary_large_image",
creator: "@mimoz",
images: imageUrl
},
};

export default function RootLayout({
Expand All @@ -15,7 +38,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="ja">
<html lang="ja" prefix="og: http://ogp.me/ns#">
<body className={noteSansJP.className}>{children}</body>
</html>
);
Expand Down

0 comments on commit ff314c8

Please sign in to comment.