diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..c2a43ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ 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 "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } 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 interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,38 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Praia da Rocha Beach Club - Restaurante & Bar Portimão", + description: "Desfrute de cocktails artesanais, pizzas em forno de lenha e frutos do mar frescos à beira-mar em Portimão. Avaliações 4.4★. Reservas online disponíveis.", + keywords: "restaurante praia da rocha, bar praia, cocktails portimão, pizza forno lenha, algarve dining, beach restaurant", + metadataBase: new URL("https://praiadarochabeachclub.com"), + alternates: { + canonical: "https://praiadarochabeachclub.com", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Praia da Rocha Beach Club - Premium Beach Dining", + description: "Experience exceptional beachfront dining with craft cocktails, wood-fired pizzas, and fresh seafood. 4.4★ rating from 334+ reviews.", + type: "website", + siteName: "Praia da Rocha Beach Club", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beach-sunset-with-clouds_1122-2111.jpg", + alt: "Praia da Rocha sunset view", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Praia da Rocha Beach Club - Best Beach Dining", + description: "Craft cocktails, wood-fired pizzas, fresh seafood. Reserve your table today!", + images: ["http://img.b2bpic.net/free-photo/beach-sunset-with-clouds_1122-2111.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +64,9 @@ export default function RootLayout({ return ( - + {children}