Skip to content

Commit

Permalink
Merge pull request #79 from team-Ollie/18-chore-metadata
Browse files Browse the repository at this point in the history
chore: 메타데이터 설정
  • Loading branch information
iOdiO89 authored Jul 13, 2024
2 parents 09fcd4e + 4d317e8 commit bc56e06
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
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.

0 comments on commit bc56e06

Please sign in to comment.