68 lines
2.6 KiB
TypeScript
68 lines
2.6 KiB
TypeScript
import type { Metadata } from 'next';
|
||
import './globals.css';
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'CyberCloud - 云端未来 | 专业云计算服务提供商',
|
||
description:
|
||
'沉浸式云服务器体验,突破传统边界。提供高性能云服务器、云存储、网络安全等全方位云计算解决方案。7x24小时技术支持,全球数据中心覆盖。',
|
||
keywords: '云服务器,云计算,云存储,DDoS防护,CDN加速,数据中心,技术支持,CyberCloud',
|
||
authors: [{ name: 'CyberCloud' }],
|
||
creator: 'CyberCloud',
|
||
publisher: 'CyberCloud',
|
||
robots: 'index, follow',
|
||
openGraph: {
|
||
type: 'website',
|
||
locale: 'zh_CN',
|
||
url: 'https://cybercloud.com',
|
||
siteName: 'CyberCloud',
|
||
title: 'CyberCloud - 云端未来 | 专业云计算服务提供商',
|
||
description:
|
||
'沉浸式云服务器体验,突破传统边界。提供高性能云服务器、云存储、网络安全等全方位云计算解决方案。',
|
||
images: [
|
||
{
|
||
url: 'https://cybercloud.com/images/og-image.jpg',
|
||
width: 1200,
|
||
height: 630,
|
||
alt: 'CyberCloud - 云端未来',
|
||
},
|
||
],
|
||
},
|
||
twitter: {
|
||
card: 'summary_large_image',
|
||
site: '@CyberCloud',
|
||
creator: '@CyberCloud',
|
||
title: 'CyberCloud - 云端未来 | 专业云计算服务提供商',
|
||
description:
|
||
'沉浸式云服务器体验,突破传统边界。提供高性能云服务器、云存储、网络安全等全方位云计算解决方案。',
|
||
images: ['https://cybercloud.com/images/twitter-card.jpg'],
|
||
},
|
||
alternates: {
|
||
canonical: 'https://cybercloud.com',
|
||
languages: {
|
||
zh: 'https://cybercloud.com/zh',
|
||
'zh-CN': 'https://cybercloud.com/zh',
|
||
'zh-TW': 'https://cybercloud.com/tw',
|
||
'zh-HK': 'https://cybercloud.com/tw',
|
||
en: 'https://cybercloud.com/en',
|
||
},
|
||
},
|
||
verification: {
|
||
google: 'your-google-verification-code',
|
||
},
|
||
};
|
||
|
||
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
||
return (
|
||
<html lang="zh">
|
||
<head>
|
||
<meta name="theme-color" content="#00ffff" />
|
||
<meta name="msapplication-TileColor" content="#000000" />
|
||
<link rel="icon" href="/favicon.ico" />
|
||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||
<link rel="manifest" href="/manifest.json" />
|
||
</head>
|
||
<body className="">{children}</body>
|
||
</html>
|
||
);
|
||
}
|