Merge version_2 into main #4
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geistSans = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Gohan Temakeria | Temaki Fresco em Guarujá", description: "Temakeria no Guarujá com temakis frescos e sushi premium. Peça agora pelo WhatsApp ou ligue. Entrega rápida em Jardim Las Palmas.", keywords: "temakeria Guarujá, temaki Guarujá, sushi delivery Guarujá, restaurante japonês Guarujá, Gohan Temakeria", metadataBase: new URL("https://www.gohantemakeria.com.br"),
|
||||
alternates: {
|
||||
canonical: "https://www.gohantemakeria.com.br"},
|
||||
openGraph: {
|
||||
title: "Gohan Temakeria | Temakis Frescos", description: "Descubra a melhor temakeria do Guarujá com ingredientes premium e preparo artesanal. Peça agora!", url: "https://www.gohantemakeria.com.br", siteName: "Gohan Temakeria", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Gohan Temakeria | Temakis Frescos", description: "Temakeria premium no Guarujá com entrega rápida e ingredientes de qualidade."},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Create Next app", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -47,8 +47,8 @@ export default function LandingPage() {
|
||||
description="Temakis frescos e sabor japonês no Guarujá. Peça agora ou venha conhecer a Gohan Temakeria."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "📞 Ligar Agora", href: "tel:+5513988738488" },
|
||||
{ text: "💬 Pedir no WhatsApp", href: "https://wa.me/5513988738488?text=Olá! Gostaria de fazer um pedido na Gohan Temakeria." }
|
||||
{ text: "Fazer Pedido Agora", href: "https://wa.me/5513988738488?text=Olá! Gostaria de fazer um pedido na Gohan Temakeria." },
|
||||
{ text: "📞 Ligar Agora", href: "tel:+5513988738488" }
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-person-eating-sushi_23-2151345064.jpg?_wi=1"
|
||||
|
||||
Reference in New Issue
Block a user