-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.js
More file actions
31 lines (29 loc) · 1008 Bytes
/
layout.js
File metadata and controls
31 lines (29 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import "./globals.css";
export const metadata = {
title: "GhzHost — Infraestruturas do Futuro | Hosting 2150",
description:
"Hospedagem de última geração. Servidores quânticos, cloud neural, VPS, servidores de jogos e revenda. Infraestrutura hiperconectada para a próxima era.",
keywords: "hosting, hospedagem, VPS, cloud, servidores, jogos, minecraft, GhzHost",
openGraph: {
title: "GhzHost — Infraestruturas do Futuro",
description: "Hospedagem de última geração com infraestrutura hiperconectada.",
url: "https://ghzhost.com",
siteName: "GhzHost",
type: "website",
},
};
export default function RootLayout({ children }) {
return (
<html lang="pt-BR">
<head>
<link rel="icon" href="/img/logo.png" />
<meta name="theme-color" content="#009fe3" />
</head>
<body>
{/* Animated Cyber Grid Background */}
<div className="cyber-grid" aria-hidden="true" />
{children}
</body>
</html>
);
}