-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from boostcampwm-2024/perf/seo-enhance
⚡️ perf: SEO 메타태그 및 robots.txt 추가
- Loading branch information
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,24 @@ | |
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="src/assets/logo-denamu-title.svg" /> | ||
<link | ||
rel="stylesheet" | ||
rel="preload" | ||
as="style" | ||
crossorigin | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.css" | ||
/> | ||
<link rel="canonical" href="https://denamu.site" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Denamu</title> | ||
<meta name="description" content="개발자들의 블로그허브 데나무" /> | ||
<meta name="keywords" content="블로그, 개발자, 데나무, 개발, 개발 블로그, 개발 허브" /> | ||
<meta property="og:title" content="Denamu" /> | ||
<meta property="og:description" content="개발자들의 블로그 허브 데나무" /> | ||
<meta property="og:image" content="src/assets/logo-denamu-title.svg" /> | ||
<meta property="og:url" content="https://your-website-url.com" /> | ||
<meta property="og:type" content="website" /> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent : * | ||
Disallow: /forbidden/ |