-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.js
More file actions
29 lines (27 loc) · 906 Bytes
/
layout.js
File metadata and controls
29 lines (27 loc) · 906 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
import "./globals.css"
import Nav from "@/components/Nav"
import Footer from "@/components/Footer"
export const metadata = {
title: "GhzHost — Infraestrutura do Futuro",
description:
"Hospedagem de próxima geração com servidores quânticos, cloud neural e infraestrutura hiperconectada. Performance de outro planeta para seus projetos.",
keywords: ["hospedagem", "vps", "cloud", "servidores", "ghzhost"],
openGraph: {
title: "GhzHost — Infraestrutura do Futuro",
description:
"Hospedagem de próxima geração. Performance de outro planeta para seus projetos.",
type: "website",
},
}
export default function RootLayout({ children }) {
return (
<html lang="pt-BR" suppressHydrationWarning>
<body>
<div className="cyber-grid" aria-hidden="true" />
<Nav />
<main>{children}</main>
<Footer />
</body>
</html>
)
}