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}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a3f917e..f12c5d6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -88,7 +88,7 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}