Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -63,9 +63,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metricsAnimation="blur-reveal"
|
||||
metrics={[
|
||||
{ icon: Star, label: "Avaliação Média", value: "4.9/5" },
|
||||
{ icon: Users, label: "Clientes Felizes", value: "5000+" },
|
||||
{ icon: Award, label: "Anos de Tradição", value: "15+" },
|
||||
{ icon: Star, label: "Avaliação Média", value: "4.9/5" },
|
||||
{ icon: Home, label: "Mesas Disponíveis", value: "120" },
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user