Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ Feature/DEV-85 ] 메인페이지 공유시 few 미리보기 구현 #145

Merged
merged 2 commits into from
Aug 6, 2024
Merged
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
15 changes: 13 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,19 @@ import { HydrationBoundary, dehydrate } from "@tanstack/react-query";
import "./globals.css";

export const metadata: Metadata = {
title: "FEW",
description: "매일 아침마다 경제 아티클과 문제를 보내드려요!",
title: "FEW - Just a few minute",
description: "퀴즈로 뉴스레터 끝까지 읽기",
openGraph: {
title: "FEW - Just a few minute",
description: "퀴즈로 뉴스레터 끝까지 읽기",
siteName: "FEW",
locale: "ko_KR",
type: "website",
url: "https://www.fewletter.com",
images: {
url: "/fewlogo.svg",
},
},
icons: {
icon: "/fewlogo.svg",
},
Expand Down
Loading