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