Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-04 04:44:05 +00:00
2 changed files with 17 additions and 35 deletions

View File

@@ -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 (
<html lang="ko" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -88,7 +88,7 @@ export default function HomePage() {
<HeroSplitDoubleCarousel
tag="회사 정보"
tagIcon={Info}
title="삼성증권 한눈에 보기"
title="40년 신뢰의 금융 파트너, 삼성증권"
description="1982년 설립 이후 40년 이상 금융 서비스를 제공해온 삼성증권의 연혁, 서비스, 지배구조, 등급체계를 한곳에서 확인하세요."
background={{ variant: "radial-gradient" }}
leftCarouselItems={[
@@ -247,4 +247,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}