Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 62faab9f7d | |||
| bf0d8c48da | |||
| cbb6d6ea3c | |||
| e2173f1842 | |||
| 855682fb2a |
@@ -1,44 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter_Tight } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
const geist = Geist({
|
||||||
variable: "--font-inter-tight",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
});
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "삼성증권 - 회사 정보 포털",
|
title: "삼성증권", description: "삼성증권 - 40년 신뢰의 금융 파트너"};
|
||||||
description: "삼성증권의 연혁, 서비스, 지배구조, VIP 등급, FAQ를 한곳에서 확인하는 종합 정보 사이트입니다.",
|
|
||||||
keywords: "삼성증권, 증권사, 금융, 투자, 자산관리, CMA, 해외주식",
|
|
||||||
openGraph: {
|
|
||||||
title: "삼성증권 정보 포털",
|
|
||||||
description: "삼성증권의 모든 정보를 한눈에 보세요",
|
|
||||||
siteName: "Samsung Securities",
|
|
||||||
type: "website",
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "삼성증권 정보 포털",
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="ko" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${interTight.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1407,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -88,7 +88,7 @@ export default function HomePage() {
|
|||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
tag="회사 정보"
|
tag="회사 정보"
|
||||||
tagIcon={Info}
|
tagIcon={Info}
|
||||||
title="삼성증권 한눈에 보기"
|
title="40년 신뢰의 금융 파트너, 삼성증권"
|
||||||
description="1982년 설립 이후 40년 이상 금융 서비스를 제공해온 삼성증권의 연혁, 서비스, 지배구조, 등급체계를 한곳에서 확인하세요."
|
description="1982년 설립 이후 40년 이상 금융 서비스를 제공해온 삼성증권의 연혁, 서비스, 지배구조, 등급체계를 한곳에서 확인하세요."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
leftCarouselItems={[
|
leftCarouselItems={[
|
||||||
|
|||||||
Reference in New Issue
Block a user