Skip to content

Commit 43b51d7

Browse files
authored
Merge pull request #169 from YAPP-Github/feature/#168
feat: 공유 링크 미리보기 노출을 위한 Open Graph 메타 설정 추가 (#168)
2 parents f459418 + 763fa12 commit 43b51d7

3 files changed

Lines changed: 37 additions & 32 deletions

File tree

README.md

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
1-
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
1+
<img width="1200" height="1675" alt="Image" src="https://github.com/user-attachments/assets/8b8aa8bc-e6b4-4132-897e-dd0a307b8fde" />
22

3-
## Getting Started
3+
<img width="1200" height="1372" alt="Image" src="https://github.com/user-attachments/assets/9c6d198a-4f53-42d5-9f32-7e516dcb5d7d" />
44

5-
First, run the development server:
5+
<img width="1200" height="1606" alt="Image" src="https://github.com/user-attachments/assets/cfc0c6a3-da24-4c51-b5af-dcb0a7da4208" />
66

7-
```bash
8-
npm run dev
9-
# or
10-
yarn dev
11-
# or
12-
pnpm dev
13-
# or
14-
bun dev
15-
```
7+
<img width="1200" height="1333" alt="Image" src="https://github.com/user-attachments/assets/a44c8994-c540-4d39-8cc7-91cf71007447" />
168

17-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
9+
### 잇다의 기술스택
1810

19-
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20-
21-
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22-
23-
## Learn More
24-
25-
To learn more about Next.js, take a look at the following resources:
26-
27-
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29-
30-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31-
32-
## Deploy on Vercel
33-
34-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35-
36-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
11+
<img width="2193" height="279" alt="Image" src="https://github.com/user-attachments/assets/4583e623-af60-4961-bc37-e844162a2442" />

public/images/opengraph-image.png

3.31 MB
Loading

src/app/layout.tsx

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,37 @@ import { UploadProvider } from "./story/register/_contexts";
1818

1919
export const metadata: Metadata = {
2020
title: "잇다",
21-
description: "Generated by create next app",
21+
description:
22+
"우리 동네 사라지면 안 되는 가게를 기록하고, 모두가 함께 응원하는 플랫폼 잇다",
23+
openGraph: {
24+
title: "잇다",
25+
description:
26+
"우리 동네 사라지면 안 되는 가게를 기록하고, 모두가 함께 응원하는 플랫폼 잇다",
27+
images: "/images/opengraph-image.png",
28+
type: "website",
29+
siteName: "잇다",
30+
url: "https://eatda.net/",
31+
},
32+
keywords: [
33+
"잇다",
34+
"eatda",
35+
"잇다 플랫폼",
36+
"잇다 맛집",
37+
"우리동네 맛집",
38+
"동네 가게",
39+
"로컬 맛집",
40+
"숨은 맛집",
41+
"사라지면 안 되는 가게",
42+
"응원하는 가게",
43+
"단골 가게",
44+
"가게 이야기",
45+
"맛집 기록",
46+
"가게 추천",
47+
"맛집 공유",
48+
"가게 등록",
49+
"소상공인",
50+
"동네의 이야기",
51+
],
2252
};
2353

2454
export const viewport: Viewport = {

0 commit comments

Comments
 (0)