Skip to content

Commit

Permalink
[Fix] meta tag 수정 (#2)
Browse files Browse the repository at this point in the history
* fix: build 에러 해결

* fix: index.html 수정

* fix: ogtag link full url로 수정
  • Loading branch information
lydiacho authored Aug 17, 2024
1 parent ce4e795 commit 144c586
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
34 changes: 17 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,32 @@
<meta property="og:type" content="website" />
<meta property="og:locale" content="ko_KR" />

<link rel="manifest" href="/makersManifest.webmanifest" />
<link rel="manifest" href="https://recruit.sopt.org/manifest.webmanifest" />

<link rel="icon" href="/makersFavicon.ico" sizes="32x32" />
<link rel="icon" href="/makersIcon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/makers-touch-icon.png" />
<link rel="icon" href="https://recruit.sopt.org/favicon.ico" sizes="32x32" />
<link rel="icon" href="https://recruit.sopt.org/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="https://recruit.sopt.org/apple-touch-icon.png" />

<meta property="og:title" content="SOPT makers 모집 지원하기" />
<meta property="og:description" content="SOPT makers의 신입 기수 모집페이지입니다." />
<meta property="og:site_name" content="SOPT makers 리크루팅" />
<meta property="og:url" content="https://recruiting.sopt.org" />
<meta property="og:title" content="SOPT 모집 지원하기" />
<meta property="og:description" content="SOPT의 신입 기수 모집페이지입니다." />
<meta property="og:site_name" content="SOPT 리크루팅" />
<meta property="og:url" content="https://recruit.sopt.org" />

<meta property="og:image" content="/makersOg.png" />
<meta property="og:image:alt" content="SOPT makers 리크루팅" />
<meta property="og:image" content="https://recruit.sopt.org/imgOg.png" />
<meta property="og:image:alt" content="SOPT 리크루팅" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="400" />

<meta property="twitter:card" content="website" />
<meta name="twitter:title" content="SOPT makers 모집 지원하기" />
<meta name="twitter:description" content="SOPT makers의 신입 기수 모집페이지입니다." />
<meta name="twitter:image" content="/makersOg.png" />
<meta property="twitter:image:alt" content="SOPT makers 리크루팅" />
<meta property="twitter:site" content="https://recruiting.sopt.org" />
<meta name="twitter:title" content="SOPT 모집 지원하기" />
<meta name="twitter:description" content="SOPT의 신입 기수 모집페이지입니다." />
<meta name="twitter:image" content="https://recruit.sopt.org/imgOg.png" />
<meta property="twitter:image:alt" content="SOPT 리크루팅" />
<meta property="twitter:site" content="https://recruit.sopt.org" />

<title>SOPT makers 모집 지원하기</title>
<title>SOPT 모집 지원하기</title>
<meta name="author" content="sopt makers team official 4th" />
<meta name="description" content="SOPT makers의 신입 기수 모집페이지입니다." />
<meta name="description" content="SOPT의 신입 기수 모집페이지입니다." />
</head>
<body>
<div id="modal"></div>
Expand Down
4 changes: 2 additions & 2 deletions manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"icons": [
{
"src": "/makers_192.png",
"src": "/icon-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/makers_512.png",
"src": "/icon-512.png",
"type": "image/png",
"sizes": "512x512"
}
Expand Down
1 change: 0 additions & 1 deletion src/common/components/Layout/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const Header = () => {
const { deviceType } = useContext(DeviceTypeContext);
const [isMenuOpen, setIsMenuOpen] = useState(false);

const deviceType = useDevice();
const navigate = useNavigate();
const { pathname } = useLocation();

Expand Down

0 comments on commit 144c586

Please sign in to comment.