File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,15 @@ export default function Document() {
22
22
< meta property = "og:title" content = "SouP" />
23
23
< meta
24
24
property = "og:description"
25
+ key = "og:description"
25
26
content = "한눈에 보는 스터디와 프로젝트"
26
27
/>
27
28
< meta
28
29
property = "og:image"
29
30
content = { `${ process . env . NEXT_PUBLIC_SITE_URL } /opengraph-image.png` }
30
31
/>
31
32
< meta property = "og:url" content = { process . env . NEXT_PUBLIC_SITE_URL } />
33
+ < meta property = "og:locale" content = "ko_KR" />
32
34
</ Head >
33
35
< body >
34
36
< div id = "portal" />
Original file line number Diff line number Diff line change @@ -15,10 +15,18 @@ import { frontFeaturedQueryContext } from "lib/queries";
15
15
import { css } from "@emotion/react" ;
16
16
import Link from "next/link" ;
17
17
import { MdOutlineSearch } from "react-icons/md" ;
18
+ import Head from "next/head" ;
18
19
19
20
const Home : CustomNextPage = ( ) => {
20
21
return (
21
22
< >
23
+ < Head >
24
+ < meta name = "title" content = "SouP | 한눈에 보는 스터디와 프로젝트" />
25
+ < meta
26
+ name = "description"
27
+ content = "흩어져 있는 스터디와 프로젝트 모집, 이젠 SouP에서 편하게 모아보세요. 관심 있는 프로젝트를 쉽게 찾고 간편하게 지원할 수 있어요."
28
+ />
29
+ </ Head >
22
30
< BannerView />
23
31
< Section bleed css = { { borderTop : "0px" } } >
24
32
< Media at = "sm" >
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ const PostView = () => {
22
22
< >
23
23
< Head >
24
24
< title > SouP | { data . postName } </ title >
25
- < meta property = "og:description" content = { data . postName } />
25
+ < meta
26
+ property = "og:description"
27
+ key = "og:description"
28
+ content = { data . postName }
29
+ />
26
30
</ Head >
27
31
< Box
28
32
responsive
You can’t perform that action at this time.
0 commit comments