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/images/meta_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 36 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,42 @@ const geistMono = Geist_Mono({
subsets: ['latin'],
});

const SITE_URL = 'https://syncly-virid.vercel.app';

export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
metadataBase: new URL(SITE_URL),
title: {
default: 'Syncly',
template: '%s | Syncly',
},
description: '목적에 맞는 워크스페이스로 팀의 협업을 한곳에서 관리하는 Syncly입니다.',
applicationName: 'Syncly',
icons: {
icon: [{ url: '/images/auth/login-symbol.png', type: 'image/png' }],
apple: [{ url: '/images/auth/login-symbol.png', type: 'image/png' }],
},
openGraph: {
title: 'Syncly',
description: '목적에 맞는 워크스페이스로 팀의 협업을 한곳에서 관리하세요.',
siteName: 'Syncly',
locale: 'ko_KR',
type: 'website',
url: SITE_URL,
images: [
{
url: '/images/meta_image.png',
width: 1200,
height: 640,
alt: 'Syncly - 목적에 맞는 워크스페이스 협업 서비스',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'Syncly',
description: '목적에 맞는 워크스페이스로 팀의 협업을 한곳에서 관리하세요.',
images: ['/images/meta_image.png'],
},
};

export default function RootLayout({
Expand All @@ -29,7 +62,7 @@ export default function RootLayout({
}>) {
return (
<html
lang="en"
lang="ko"
className={cn(
'h-full',
'antialiased',
Expand Down
2 changes: 1 addition & 1 deletion src/app/workspaces/new/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Metadata } from 'next';
import { CreateWorkspacePage } from '@/views/create-workspace';

export const metadata: Metadata = {
title: '워크스페이스 만들기 · Syncly',
title: '워크스페이스 만들기',
};

export default function Page() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/workspaces/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Metadata } from 'next';
import { WorkspacesPage } from '@/views/workspaces';

export const metadata: Metadata = {
title: '내 워크스페이스 · Syncly',
title: '내 워크스페이스',
};

export default function Page() {
Expand Down