|
|
|
|
@@ -1,54 +1,17 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Pirilanche Grill | Melhor Rodízio de Churrasco", description: "Descubra o melhor rodízio de churrasco. Premium atendimento, carnes selecionadas e reservas fáceis. Reserve sua mesa agora no Pirilanche Grill.", keywords: "churrascaria, rodízio, churrasco, São Paulo, restaurante, carnes premium, Brazilian steakhouse", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Pirilanche Grill | Experiência Premium em Churrascaria", description: "Sabor premium, ambiente aconchegante, atendimento impecável. Reserve sua mesa no melhor rodízio da cidade.", type: "website", siteName: "Pirilanche Grill", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/fried-meat-with-onion-side-view_141793-2764.jpg", alt: "Carnes premium selecionadas Pirilanche Grill"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Pirilanche Grill | Rodízio de Churrasco Premium", description: "Melhor experiência em churrascaria com carnes de primeira qualidade e atendimento impecável.", images: ["http://img.b2bpic.net/free-photo/fried-meat-with-onion-side-view_141793-2764.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Pirilanche Grill - Rodízio de Churrasco Premium", description: "Descubra o melhor rodízio de churrasco da cidade. Carnes premium, ambiente aconchegante e atendimento impecável."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="pt-BR">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1379,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|