File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed
Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ const geistMono = Geist_Mono({
1414} ) ;
1515
1616export const metadata : Metadata = {
17- title : 'MOIT | 모두의 만남을 잇다, 모잇' ,
18- description : '모잇으로 모임 일정을 쉽게 조율해보세요' ,
17+ title : 'moit | 모두의 만남을 잇다, 모잇' ,
18+ description : '모잇으로 모임 일정을 쉽고 빠르게 조율해보세요' ,
1919} ;
2020
2121export default function RootLayout ( {
Original file line number Diff line number Diff line change @@ -24,14 +24,28 @@ export async function generateMetadata({
2424
2525 try {
2626 const meetingData = await getMeetingById ( meetingId ) ;
27+ const title = `${ meetingData . hostName } 님이 초대한 ${ meetingData . title } ` ;
28+ const description = 'moit | 모두의 만남을 잇다, 모잇' ;
29+
2730 return {
28- title : `${ meetingData . hostName } 님이 초대한 ${ meetingData . title } ` ,
29- description : 'MOIT | 모두의 만남을 잇다, 모잇' ,
31+ title,
32+ description,
33+ openGraph : {
34+ title,
35+ description,
36+ } ,
3037 } ;
3138 } catch {
39+ const title = 'moit | 모두의 만남을 잇다, 모잇' ;
40+ const description = '모잇으로 모임 일정을 쉽게 빠르게 조율해보세요' ;
41+
3242 return {
33- title : 'MOIT | 모두의 만남을 잇다, 모잇' ,
34- description : '모잇으로 모임 일정을 쉽게 조율해보세요' ,
43+ title,
44+ description,
45+ openGraph : {
46+ title,
47+ description,
48+ } ,
3549 } ;
3650 }
3751}
You can’t perform that action at this time.
0 commit comments