diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a731691..d155544 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -144,7 +144,7 @@ export default function AboutPage() { title: "Qualidade em Primeiro Lugar", description: "Cada ingrediente é cuidadosamente selecionado. Pão artesanal fresco diariamente, carnes de fornecedores de confiança, e vegetais da melhor qualidade.", tag: "Excelência", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-ingredients-with-lemon-seasonings_140725-57650.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-ingredients-with-lemon-seasonings_140725-57650.jpg?_wi=2", imageAlt: "Ingredientes Premium", }, { @@ -152,7 +152,7 @@ export default function AboutPage() { title: "Tradição Americana com Toque Local", description: "Combinamos as receitas clássicas americanas com ingredientes e inspiração portuguesa, criando hambúrgueres únicos.", tag: "Inovação", - imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6420.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6420.jpg?_wi=2", imageAlt: "Ambiente do Restaurante", }, { @@ -160,7 +160,7 @@ export default function AboutPage() { title: "Paixão em Cada Mordida", description: "Nossos chefs dedicam-se com paixão a cada hambúrguer. Não é apenas comida, é uma experiência de qualidade.", tag: "Dedicação", - imageSrc: "http://img.b2bpic.net/free-photo/businessman-having-his-lunch-working-place_259150-58633.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessman-having-his-lunch-working-place_259150-58633.jpg?_wi=2", imageAlt: "Serviço com Dedicação", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..97c885e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "American Bites Burger - Hambúrgueres Artesanais em Lisboa", + description: "Hambúrgueres americanos premium em Lisboa. Ingredientes de qualidade, pão artesanal, batatas crocantes. Peça online ou visite-nos agora!", + keywords: "hambúrguer, burger, Lisboa, artesanal, premium, comida, restaurante, pedido online", + metadataBase: new URL("https://americanbites.pt"), + alternates: { + canonical: "https://americanbites.pt", + }, + openGraph: { + title: "American Bites Burger - Hambúrgueres Artesanais", + description: "Um dos melhores hambúrgueres de Lisboa com ingredientes premium", + url: "https://americanbites.pt", + siteName: "American Bites Burger", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/yummy-hamburger-with-onion-fries_23-2148374910.jpg", + alt: "Hambúrguer artesanal American Bites", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "American Bites Burger", + description: "Hambúrgueres artesanais premium em Lisboa", + images: [ + "http://img.b2bpic.net/free-photo/yummy-hamburger-with-onion-fries_23-2148374910.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}