|
|
|
|
@@ -1,55 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Inter_Tight } from "next/font/google";
|
|
|
|
|
import { Outfit } 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 interTight = Inter_Tight({
|
|
|
|
|
variable: "--font-inter-tight", subsets: ["latin"],
|
|
|
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
|
|
|
});
|
|
|
|
|
const outfit = Outfit({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Padaria Avança | Pão Fresco & Pastelaria Fina Portuguesa", description: "Padaria e Pastelaria em Avança. Pão fresco diário, Rosca Típica de Avança, pastelaria fina e refeições ligeiras. Elegância, qualidade e tradição portuguesa.", keywords: "padaria avança, pastelaria portuguesa, pão fresco, rosca de avança, café em avança, padaria portugal", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Padaria Avança | Autêntica Padaria Portuguesa", description: "Descubra a excelência da padaria portuguesa em Avança. Especialidades locais, pão fresco diário e pastelaria fina.", type: "website", siteName: "Padaria Avança", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/sliced-fresh-pastry-wooden-plate_114579-50491.jpg", alt: "Fresh pastries at Padaria Avança"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Padaria Avança | Pão Fresco & Pastelaria", description: "Visite a padaria mais autêntica de Avança. Tradição, qualidade e sabor português.", images: ["http://img.b2bpic.net/free-photo/sliced-fresh-pastry-wooden-plate_114579-50491.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Padaria Avança", description: "A Arte da Padaria e Pastelaria no Coração de Avança"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="pt">
|
|
|
|
|
<body className={outfit.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|