Update src/app/layout.tsx

This commit is contained in:
2026-01-14 18:18:39 +00:00
parent b4b91386c8
commit fd5f6297f2

View File

@@ -1,31 +1,36 @@
import type { Metadata } from "next";
import { Lora } from "next/font/google";
import { Cormorant_Garamond, Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lora = Lora({
variable: "--font-lora", subsets: ["latin"],
const cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Luxury Watches Madrid | Premium Timepiece Collection", description: "Discover exceptional luxury watches in Madrid. Handpicked, authenticated timepieces from world's finest watchmakers. Expert curation and certification included.", keywords: "luxury watches, Madrid, timepieces, Swiss watches, watch collection, premium watches", metadataBase: new URL("https://timepiecesmadrid.com"),
title: "Café Barcelona | Vintage Charm & Artisan Coffee", description: "Discover our cozy vintage café in Barcelona. Artisan coffee, homemade pastries, and timeless ambiance. Your perfect escape in the heart of the city.", keywords: "café Barcelona, vintage coffee, artisan café, Barcelona coffee shop, cozy café", metadataBase: new URL("https://cafebarcelona.com"),
alternates: {
canonical: "https://timepiecesmadrid.com"
canonical: "https://cafebarcelona.com"
},
robots: {
index: true,
follow: true
},
openGraph: {
title: "Luxury Watches Madrid | Premium Timepiece Collection", description: "Discover exceptional luxury watches in Madrid. Handpicked, authenticated timepieces from world's finest watchmakers.", type: "website", siteName: "Timepieces Madrid", images: [
title: "Café Barcelona | Vintage Charm & Artisan Coffee", description: "Discover our cozy vintage café in Barcelona. Artisan coffee, homemade pastries, and timeless ambiance.", type: "website", siteName: "Café Barcelona", images: [
{
url: "https://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg", alt: "Luxury watch collection"
url: "https://images.unsplash.com/photo-1442512595331-e89e30266358?w=1200&h=630&fit=crop", alt: "Vintage café Barcelona"
}
]
},
twitter: {
card: "summary_large_image", title: "Luxury Watches Madrid", description: "Premium authenticated timepiece collection", images: ["https://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg"]
card: "summary_large_image", title: "Café Barcelona", description: "Vintage charm meets artisan coffee", images: ["https://images.unsplash.com/photo-1442512595331-e89e30266358?w=1200&h=630&fit=crop"]
}
};
@@ -37,9 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={lora.variable}
>
<body className={`${cormorantGaramond.variable} ${inter.variable}`}>
<Tag />
{children}
@@ -1264,4 +1267,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}