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

⚡️ perf: SEO 메타태그 및 robots.txt 추가 #303

Merged
merged 1 commit into from
Dec 30, 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
15 changes: 13 additions & 2 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 2 additions & 0 deletions client/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent : *
Disallow: /forbidden/
Loading