Skip to content

Commit

Permalink
feat: 메타데이터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Jan 14, 2025
1 parent 3b29d00 commit 77a1f38
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions apps/wow-docs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ export const metadata: Metadata = {
openGraph: {
title: "와우 디자인 시스템",
description: "GDSC Hongik 디자인 시스템",
images: ["/images/og-image.png"],
images: [`${process.env.NEXT_PUBLIC_APP_URL}/images/og-image.png`],
url: `${process.env.NEXT_PUBLIC_APP_URL}`,
siteName: "와우 디자인 시스템",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "와우 디자인 시스템",
description: "GDSC Hongik 디자인 시스템",
images: ["/images/og-image.png"],
images: [`${process.env.NEXT_PUBLIC_APP_URL}/images/og-image.png`],
},
icons: {
icon: "/images/logo.svg",
Expand All @@ -38,6 +39,10 @@ export const metadata: Metadata = {
},
],
},
robots: {
index: true,
follow: true,
},
};

const RootLayout = ({
Expand All @@ -46,7 +51,7 @@ const RootLayout = ({
children: React.ReactNode;
}): JSX.Element => {
return (
<html lang="en">
<html lang="ko">
<body>
<Navbar />
<styled.main
Expand Down

0 comments on commit 77a1f38

Please sign in to comment.