From bf0d8c48da892ec39e007ea718f9c4297716e16e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:44:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++++++++------------------------------- 1 file changed, 15 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9867867..d2933d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,28 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "삼성증권 - 회사 정보 포털", - description: "삼성증권의 연혁, 서비스, 지배구조, VIP 등급, FAQ를 한곳에서 확인하는 종합 정보 사이트입니다.", - keywords: "삼성증권, 증권사, 금융, 투자, 자산관리, CMA, 해외주식", - openGraph: { - title: "삼성증권 정보 포털", - description: "삼성증권의 모든 정보를 한눈에 보세요", - siteName: "Samsung Securities", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "삼성증권 정보 포털", - }, -}; + title: "삼성증권", description: "삼성증권 - 40년 신뢰의 금융 파트너"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +