metadata 수정
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata, Viewport } from "next";
|
||||||
import { Inter, JetBrains_Mono } from "next/font/google";
|
import { Inter, JetBrains_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
@@ -19,7 +19,11 @@ export const metadata: Metadata = {
|
|||||||
description: "제품 수명 주기 관리(PLM) 솔루션",
|
description: "제품 수명 주기 관리(PLM) 솔루션",
|
||||||
keywords: ["PLM", "Product Lifecycle Management", "WACE", "제품관리"],
|
keywords: ["PLM", "Product Lifecycle Management", "WACE", "제품관리"],
|
||||||
authors: [{ name: "WACE" }],
|
authors: [{ name: "WACE" }],
|
||||||
viewport: "width=device-width, initial-scale=1",
|
};
|
||||||
|
|
||||||
|
export const viewport: Viewport = {
|
||||||
|
width: "device-width",
|
||||||
|
initialScale: 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ export const PAGE_INFO: Record<string, PageInfo> = {
|
|||||||
},
|
},
|
||||||
"/admin/tableMng": {
|
"/admin/tableMng": {
|
||||||
title: "테이블 타입 관리",
|
title: "테이블 타입 관리",
|
||||||
description: "데이터베이스 테이블 타입을 관리합니다",
|
description: "데이터베이스 테이블과 컬럼 타입을 관리합니다",
|
||||||
},
|
},
|
||||||
|
|
||||||
// 기타 페이지들
|
// 기타 페이지들
|
||||||
|
|||||||
Reference in New Issue
Block a user