Skip to content

Commit

Permalink
[Feature/BAR-242] head 태그 추가 (#72)
Browse files Browse the repository at this point in the history
* feat: head 내용 추가

* feat: test

* feat: 스킴 분기 추가

* feat: 스킴 분기 제거

* feat: 이미지 경로 수정

* feat: meta 태그 제거

* feat: og image 추가

* feat: og image 추가

* feat: og image 추가

* feat: og image 추가

* feat: og image 추가

* feat: 불필요 import 제거

* feat: ogimage url 변경
  • Loading branch information
miro-ring authored Feb 20, 2024
1 parent 8fb9b58 commit 20b2f36
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Create and publish a Docker image to AWS ECR ans deploy to EC2
on:
push:
branches:
- main
- feature/BAR-242

env:
REGISTRY: ${{ secrets.AWS_ECR_REGISTRY }}
Expand Down
16 changes: 16 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { AppProps } from 'next/app';
import Head from 'next/head';

import 'react-notion-x/src/styles.css';
import '@styles/global.css';
Expand All @@ -10,6 +11,21 @@ import Toast from '@components/Toast';
const App = ({ Component, pageProps }: AppProps) => {
return (
<TanstackQueryProvider dehydratedState={pageProps.dehydratedState}>
<Head>
<link rel="icon" href="/favicon.ico" />
<meta name="description" content="바로 잡아 바로 쓰는, 바로" />
<meta name="keyword" content="baro 바로" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ba-ro.co.kr" />
<meta property="og:title" content="바로" />
<meta
property="og:image"
content="https://image.ba-ro.co.kr/ba-ro.png"
/>
<meta property="og:description" content="바로 잡아 바로 쓰는, 바로" />
<meta property="og:site_name" content="baro" />
<title>바로 잡아 바로 쓰는, 바로</title>
</Head>
<Component {...pageProps} />
<Toast />
<Modal />
Expand Down
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.

0 comments on commit 20b2f36

Please sign in to comment.