검색엔진등록 : Naver
1. 네이버 서치 어드바이저 접속
https://searchadvisor.naver.com/ ( 웹마스터 도구로 진입)
2. HTML 정적파일업로드 혹은 meta 태그 추가하여 소유자확인
3. meta 태그 등록
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "@/styles/globals.css"
import styles from "@/styles/layout.module.css"
import Navigation from "@/components/navigation";
import Footer from "@/components/footer";
import GoToTop from "@/components/goto-top";
const inter = Inter({ subsets: ["latin"] });
// metadata.ts
export const metadata = {
title: {
template: "Haeinn engineering | %s",
default: "해인엔지니어링"
},
description: '최고의 품질과 기술력으로 미래산업을 선도하는 기업 해인 엔지니어링',
image: 'assets/img/haein/logo/brand_logo.png',
openGraph: {
title: "해인엔지니어링",
description: "플랜트산업의 미래를 선도하는 기업 해인엔지니어링",
images: [
{
url: "https://haeinn.kr/assets/img/haein/logo/brand_logo.png",
alt: "해인엔지니어링 로고",
},
],
url: "https://haeinn.kr",
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<link rel="icon" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/haein/logo/Favicon-circle.png" />
<meta name="naver-site-verification" content="###################################" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body suppressHydrationWarning={true} className={styles.body}>
<Navigation />
{children}
{/* <div className={styles.background__image}></div> */}
{/* <Loading /> */}
<GoToTop />
<Footer></Footer>
</body>
</html>
);
}
Metadata 이미지 사이즈 맞추는것
• Recommended size: 1200 x 630 pixels
• Aspect ratio: 1.91:1
<meta property="og:image" content="https://yourwebsite.com/path-to-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Description of the image" />
https://www.heymeta.com/results?url=haeinn.kr
사이트에서 검사할것
스마트 플레이스등록
https://new.smartplace.naver.com/bizes/new
네이버 사이트 체크
: HTTP, 검색엔진 로봇 등록, 메타태그, 사이트 타이틀, Open Graph 등록등 처리
https://searchadvisor.naver.com/tools/sitecheck
Robots.txt 파일 설정 : https://searchadvisor.naver.com/guide/seo-basic-robots
User-agent: *
Allow: /
Sitemap: http://www.example.com/sitemap.xml
RSS (Rich Site Summary)
네이버 검색로봇은 웹마스터도구에 제출된 RSS 및 사이트맵을 "콘텐츠 피드"로 간주하여 주기적으로 재 방문 합니다.
사이트의 주요 콘텐츠 URL을 담고 있기 때문에 네이버 검색로봇에게 내 사이트의 URL을 적극적으로 알려주는 창구로 활용할 수 있습니다. 만약, 네이버 검색결과에서 내 사이트의 콘텐츠 노출량이 적다면 RSS 및 사이트맵 피드를 제출하는 것을 권장
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>Haeinn Welcome</title>
<link>https://www.haeinn.kr/welcome</link>
<description>플랜트 건설산업의 품질 최고주의, 고객 중심주의를 기업 모토로 최선을 다한 시공으로 오늘에 이르렀습니다.</description>
<language>ko-kr</language>
<lastBuildDate>Sun, 01 Dec 2024 12:00:00 +0000</lastBuildDate>
<item>
<title>Haeinn History</title>
<link>https://www.haeinn.kr/history</link>
<description>Details about the latest project by Haeinn.</description>
<pubDate>Sun, 01 Dec 2024 08:00:00 +0000</pubDate>
<guid>https://www.haeinn.kr/history</guid>
</item>
<item>
<title>Haeinn Project Isolation</title>
<link>https://www.haeinn.kr/construct/1</link>
<description>Details about the latest project by Haeinn.</description>
<pubDate>Sun, 01 Dec 2024 08:00:00 +0000</pubDate>
<guid>https://www.haeinn.kr/construct/1</guid>
</item>
<item>
<title>Haeinn Project Dact</title>
<link>https://www.haeinn.kr/construct/2</link>
<description>Details about the latest project by Haeinn.</description>
<pubDate>Sun, 01 Dec 2024 08:00:00 +0000</pubDate>
<guid>https://www.haeinn.kr/construct/2</guid>
</item>
<item>
<title>Haeinn Project Scaffolding</title>
<link>https://www.haeinn.kr/construct/3</link>
<description>Details about the latest project by Haeinn.</description>
<pubDate>Sun, 01 Dec 2024 08:00:00 +0000</pubDate>
<guid>https://www.haeinn.kr/construct/3</guid>
</item>
<!-- Add more items here -->
</channel>
</rss>
Sitemap
loc 수집 대상 URL 필수
lastmod 페이지가 수정된 날짜 선택
changefreq 페이지 변경 빈도 선택
priority 사이트내 중요도 선택'
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.haeinn.kr/</loc>
<lastmod>2024-12-01</lastmod>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.haeinn.kr/history</loc>
<lastmod>2024-12-01</lastmod>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.haeinn.kr/contacts</loc>
<lastmod>2024-12-01</lastmod>
<priority>0.7</priority>
</url>
<!-- Add other pages here -->
</urlset>
네이버 사이트 기업등록
-→
네이버 검색광고
네이버 통합 광고주센터 : https://ads.naver.com/?redirectUrl=/signup/ad-account?tab=BusinessPersonAccount
사이트 검색광고 : 파워링크유형, 네이버 통합검색 및 네이버 내외부의 다양한 영역에
광고소재와 사이트 링크를 노출하는 기본형 검색광고
클릭당 과금유형
네이버 쇼핑광고 : 네이버 쇼핑에서 노출
콘텐츠 검색광고 : 블로그글 콘텐츠를 네이버 통합검색에 노출
브랜드 검색 광고 : 제품의 브랜드로 노출
네이버 플레이스 광고 : 플레이스 정보를 네이버의 통합검색에 노출
지역광고 : 네이버서비스를 사용하는 지역사용자에게 노출
Favicon 등록
<link rel="shortcut icon" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="icon" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/haein/logo/Favicon-circle.png" />
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/assets/img/haein/logo/Favicon-circle.png" />
우선순위는 shortcut icon > icon > apple-touch-icon → apple-touch-icon-precomposed


