Skip to content

Commit

Permalink
Add OGP
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsukiKigoshi committed Nov 17, 2023
1 parent 02b0271 commit 89f3679
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Itsuki Kigoshi",
description: "This is the profile of Itsuki Kigoshi",
description: "I'm not a robot",
};

export default function RootLayout({
Expand All @@ -17,6 +17,12 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<meta property="og:title" content="Itsuki Kigoshi: Profile" />
<meta
property="og:description"
content={`Itsuki Kigoshi's Profile. I'm not a robot`}
/>
<meta property="og:image" content="/profile.jpg" />
<body className={inter.className}>{children}</body>
</html>
);
Expand Down

0 comments on commit 89f3679

Please sign in to comment.