|
|
|
|
@@ -1,57 +1,23 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
import { Poppins } 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 openSans = Open_Sans({
|
|
|
|
|
variable: "--font-open-sans", subsets: ["latin"],
|
|
|
|
|
const poppins = Poppins({
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Yaki Sushi - Entrega Premium de Sushi | Pedir Agora", description: "Sushi fresco entregue na sua casa. Combinados premium, promoções exclusivas e entrega rápida. Peça no WhatsApp ou ligue agora. ⭐ 4.9 avaliação.", keywords: "sushi delivery, sushi perto de mim, temaki delivery, sushi premium, hot roll crocante, entrega rápida, sushi Yaki, japonês", metadataBase: new URL("https://yakisushi.com.br"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://yakisushi.com.br"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Yaki Sushi - Sushi Premium Entregue na Sua Casa", description: "Descubra nossos combinados mais vendidos. Sushi fresco preparado na hora com entrega rápida.", url: "https://yakisushi.com.br", siteName: "Yaki Sushi", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/close-up-spicy-mini-tacos-served-with-chili-paste_140725-4995.jpg", alt: "Sushi Premium Yaki"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Yaki Sushi - Sushi Premium Entregue na Sua Casa", description: "Sushi fresco, combinados deliciosos e entrega rápida. Peça agora!", images: ["http://img.b2bpic.net/free-photo/close-up-spicy-mini-tacos-served-with-chili-paste_140725-4995.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Yaki Sushi - Sushi Premium Entregue na Sua Casa", description: "Os combinados mais pedidos da cidade. Peça agora e receba sushi fresco preparado na hora. Entrega grátis em itens selecionados."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="pt-BR">
|
|
|
|
|
<body className={poppins.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1385,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|