Update src/app/layout.tsx
This commit is contained in:
@@ -1,31 +1,36 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Lora } from "next/font/google";
|
import { Cormorant_Garamond, Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const lora = Lora({
|
const cormorantGaramond = Cormorant_Garamond({
|
||||||
variable: "--font-lora", subsets: ["latin"],
|
variable: "--font-cormorant-garamond", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
alternates: {
|
||||||
canonical: "https://timepiecesmadrid.com"
|
canonical: "https://cafebarcelona.com"
|
||||||
},
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true
|
follow: true
|
||||||
},
|
},
|
||||||
openGraph: {
|
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: {
|
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 (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${cormorantGaramond.variable} ${inter.variable}`}>
|
||||||
className={lora.variable}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user