Skip to content

Commit 85c88d2

Browse files
authored
Merge pull request #145 from codeit-2team/feat/138
Feat/138 SEO 적용
2 parents d7315cc + c169d3e commit 85c88d2

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

public/favicon.ico

14.7 KB
Binary file not shown.

public/og-image.png

3.02 MB
Loading

src/app/layout.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ import { Toaster } from 'sonner';
55
export const metadata = {
66
title: 'GlobalNomad',
77
description: '글로벌 노마드 체험 플랫폼',
8+
keywords: ['글로벌 노마드', '체험 플랫폼', '여행', '노마드', '다양한 활동'],
9+
authors: [{ name: 'GlobalNomad', url: 'https://globalnomad.site/' }],
10+
openGraph: {
11+
title: 'GlobalNomad',
12+
description: '전 세계 체험을 한 눈에!',
13+
url: 'https://globalnomad.site/',
14+
siteName: 'GlobalNomad',
15+
locale: 'ko_KR',
16+
type: 'website',
17+
images: [
18+
{
19+
url: 'https://globalnomad.site/og-image.png',
20+
width: 1200,
21+
height: 630,
22+
alt: 'GlobalNomad 메인 배너 이미지',
23+
},
24+
],
25+
icons: {
26+
icon: '/favicon.ico',
27+
apple: '/apple-touch-icon.png',
28+
},
29+
},
830
};
931

1032
export default function RootLayout({

0 commit comments

Comments
 (0)