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

chore: 메타데이터 설정 #79

Merged
merged 2 commits into from
Jul 13, 2024
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
20 changes: 20 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,32 @@ import { AppProps } from "next/app";
import { DevTools } from "jotai-devtools";
import "jotai-devtools/styles.css";
import { Provider } from "jotai";
import Head from "next/head";

const queryClient = new QueryClient();

export default function App({ Component, pageProps }: AppProps) {
return (
<Provider>
<Head>
<meta property="og:title" content="WeCare" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://team-ollie.github.io/WeCare-FE/main"
/>
<meta
property="og:description"
content="노숙인 프로그램 참여 독려를 위한, 기관 프로그램 챌린지 서비스 WeCare"
/>
<meta property="og:image" content="@/public/pngs/ogTag.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:site_name" content="위케어" />
<link rel="icon" href="@/public/favicon.ico" />
</Head>

<QueryClientProvider client={queryClient}>
<RootLayout>
<Component {...pageProps} />
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/pngs/ogTag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.