Merge version_2 into main #4
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Pizzaria Elpis | Pizza Artesanal no Centro de Curitiba", description: "A melhor pizza artesanal do Centro de Curitiba. Massa leve, borda crocante e ingredientes premium. Entrega rápida. Peça agora!", keywords: "pizza curitiba, pizza centro curitiba, pizza artesanal, entrega pizza, pizzaria curitiba", metadataBase: new URL("https://pizzariaelpis.com.br"),
|
||||
alternates: {
|
||||
canonical: "https://pizzariaelpis.com.br"},
|
||||
openGraph: {
|
||||
title: "Pizzaria Elpis - Pizza Artesanal Curitiba", description: "Mais de 200 avaliações 5 estrelas. Pizza feita na hora com ingredientes selecionados.", url: "https://pizzariaelpis.com.br", siteName: "Pizzaria Elpis", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/cheesy-mushroom-pizza-with-cheese-grater-near-ingredients-black-backdrop_23-2148076185.jpg", alt: "Pizza Artesanal Pizzaria Elpis"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Pizzaria Elpis - Pizza Artesanal", description: "Melhor pizza do Centro. Entrega rápida. Qualidade garantida.", images: ["http://img.b2bpic.net/free-photo/cheesy-mushroom-pizza-with-cheese-grater-near-ingredients-black-backdrop_23-2148076185.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Pizzaria Elpis", description: "A pizza artesanal mais bem avaliada do Centro de Curitiba"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="pt-BR">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -105,6 +105,10 @@ export default function LandingPage() {
|
||||
tag="Menu"
|
||||
tagIcon={UtensilsCrossed}
|
||||
products={[
|
||||
{
|
||||
id: "4", name: "Promoção: 2 Grandes + Refri", price: "R$ 89,90", imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/food-menu-delicious-pizza-instagram-facebook-story-template_120329-6316.jpg?_wi=1", imageAlt: "Promoção"
|
||||
},
|
||||
{
|
||||
id: "1", name: "Pizza Tradicional Margherita", price: "R$ 45,00", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/pizza-margarita-table_140725-1201.jpg?_wi=1", imageAlt: "Pizza Margherita"
|
||||
@@ -117,10 +121,6 @@ export default function LandingPage() {
|
||||
id: "3", name: "Pizza Borda Recheada", price: "R$ 55,00", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-toast-with-pizza-ingredients_23-2148194529.jpg", imageAlt: "Pizza Borda Recheada"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Promoção: 2 Grandes + Refri", price: "R$ 89,90", imageSrc:
|
||||
"http://img.b2bpic.net/free-psd/food-menu-delicious-pizza-instagram-facebook-story-template_120329-6316.jpg?_wi=1", imageAlt: "Promoção"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user