69 lines
2.4 KiB
TypeScript
69 lines
2.4 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'K&K Solution Inc. | IT Consulting for Japanese Mid-Caps',
|
|
description: 'K&K Solution Inc. offers BCG/McKinsey-grade IT strategy, DX, and SAP consulting tailored for Japanese mid-cap enterprises. Bilingual support (JP/EN) with a refined and trustworthy approach. Utilizing Montserrat for Latin text, Meiryo UI for Japanese, and Palatino Linotype for logo lockup.',
|
|
keywords: ["IT consulting, DX, digital transformation, SAP, S/4HANA, PMO, IT due diligence, talent development, BPR, Japan, corporate, strategy, K&K Solution Inc."],
|
|
openGraph: {
|
|
"title": "K&K Solution Inc. | IT Consulting for Japanese Mid-Caps",
|
|
"description": "K&K Solution Inc. offers BCG/McKinsey-grade IT strategy, DX, and SAP consulting tailored for Japanese mid-cap enterprises.",
|
|
"url": "https://www.kksolution.inc",
|
|
"siteName": "K&K Solution Inc.",
|
|
"images": [
|
|
{
|
|
"url": "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psnj5l",
|
|
"alt": "K&K Solution Inc. Gold Logo"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "K&K Solution Inc. | IT Consulting for Japanese Mid-Caps",
|
|
"description": "K&K Solution Inc. offers BCG/McKinsey-grade IT strategy, DX, and SAP consulting tailored for Japanese mid-cap enterprises.",
|
|
"images": [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psnj5l"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${montserrat.variable} antialiased`}>
|
|
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|