Skip to content

Commit

Permalink
Merge pull request #338 from TripInfoWeb/dev_refactoring
Browse files Browse the repository at this point in the history
Feat: SEO를 위한 meta 태그 설정
  • Loading branch information
HyunJinNo authored Sep 20, 2024
2 parents 1a0b66a + 4c85668 commit 7ea09a8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
1 change: 0 additions & 1 deletion public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
Expand Down
33 changes: 29 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,42 @@ import FloatingButtonContainer from "@/containers/common/FloatingButtonContainer
import HeaderContainer from "@/containers/common/HeaderContainer";
import "@/styles/globals.css";
import type { Metadata } from "next";
import { Noto_Sans_KR } from "next/font/google";
import Script from "next/script";

const notoSansKr = Noto_Sans_KR({ weight: "400", subsets: ["latin"] });

export const metadata: Metadata = {
title: {
template: "Solitour | %s",
default: "Solitour - 새로운 나를 찾는 여행",
},
description: "Solitour",
description:
"Solitour(솔리투어)는 사용자들이 여행한 정보를 기록하고 공유하여 정보나 팁 같은 것들을 이미지와 함께 제공하거나, 사용자들이 모임 기간, 모임 마감일, 성별, 나이, 장소, 참여 인원 등을 설정하여 모임을 등록하고, 모임에 신청할 수 있는 서비스를 제공합니다. 또한 본인의 여행 기록을 남길 수 있는 서비스도 제공합니다.",
keywords: [
"Solitour",
"Solitourist",
"솔리투어",
"여행",
"정보",
"모임",
"일기",
"여행일기",
],
openGraph: {
title: "Solitour - 새로운 나를 찾는 여행",
description:
"Solitour(솔리투어)는 사용자들이 여행한 정보를 기록하고 공유하여 정보나 팁 같은 것들을 이미지와 함께 제공하거나, 사용자들이 모임 기간, 모임 마감일, 성별, 나이, 장소, 참여 인원 등을 설정하여 모임을 등록하고, 모임에 신청할 수 있는 서비스를 제공합니다. 또한 본인의 여행 기록을 남길 수 있는 서비스도 제공합니다.",
url: "https://www.solitourist.com/",
siteName: "솔리투어",
images: [
{
url: "/home/background1.png",
width: 1440,
height: 600,
alt: "솔리투어 메인 이미지",
},
],
locale: "ko_KR",
type: "website",
},
};

declare global {
Expand Down

0 comments on commit 7ea09a8

Please sign in to comment.