Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ import { Toaster } from 'sonner';
export const metadata = {
title: 'GlobalNomad',
description: '글로벌 노마드 체험 플랫폼',
keywords: ['글로벌 노마드', '체험 플랫폼', '여행', '노마드', '다양한 활동'],
authors: [{ name: 'GlobalNomad', url: 'https://globalnomad.site/' }],
openGraph: {
title: 'GlobalNomad',
description: '전 세계 체험을 한 눈에!',
url: 'https://globalnomad.site/',
siteName: 'GlobalNomad',
locale: 'ko_KR',
type: 'website',
images: [
{
url: 'https://globalnomad.site/og-image.png',
width: 1200,
height: 630,
alt: 'GlobalNomad 메인 배너 이미지',
},
],
icons: {
icon: '/favicon.ico',
apple: '/apple-touch-icon.png',
},
},
};

export default function RootLayout({
Expand Down