Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b1c695772 | |||
| e368b6614b | |||
| 07852b01a6 |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Outfit } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Inter_Tight } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const outfit = Outfit({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Padaria Avança", description: "A Arte da Padaria e Pastelaria no Coração de Avança"};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="pt">
|
||||||
<ServiceWrapper>
|
<body className={outfit.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,7 +47,8 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "canvas-reveal" }}
|
background={{ variant: "canvas-reveal" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Descubra o Nosso Menu", href: "menu" },
|
{ text: "Descubra o Nosso Menu", href: "menu" },
|
||||||
{ text: "Visite-nos", href: "contact" }
|
{ text: "Visite-nos", href: "contact" },
|
||||||
|
{ text: "Chamar Agora", href: "tel:+351-example" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/sliced-fresh-pastry-wooden-plate_114579-50491.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/sliced-fresh-pastry-wooden-plate_114579-50491.jpg"
|
||||||
|
|||||||
Reference in New Issue
Block a user