Update src/app/layout.tsx
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
@@ -15,15 +14,15 @@ const inter = Inter({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Lumière Skincare | Natural Beauty Products", description: "Discover luxurious, science-backed skincare formulated with natural ingredients. Premium products for radiant, healthy skin.", keywords: "skincare, natural cosmetics, beauty products, luxury skincare, organic beauty", metadataBase: new URL("https://lumiereskincare.com"),
|
||||
title: "Clínica Titanium | Medical Aesthetic Clinic Montevideo", description: "Premium medical aesthetic clinic in Montevideo offering facial rejuvenation, body contouring, and advanced laser treatments. Expert dermatologists and cutting-edge technology.", keywords: "medical aesthetics, facial rejuvenation, body contouring, laser hair removal, dermatology, Montevideo, aesthetic clinic", metadataBase: new URL("https://clinicatitanium.com"),
|
||||
alternates: {
|
||||
canonical: "https://lumiereskincare.com"
|
||||
canonical: "https://clinicatitanium.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Lumière Skincare | Premium Natural Beauty", description: "Experience the power of nature-inspired skincare with our award-winning formulations.", url: "https://lumiereskincare.com", siteName: "Lumière Skincare", type: "website"
|
||||
title: "Clínica Titanium | Premium Medical Aesthetic Clinic", description: "Experience luxury medical aesthetics with advanced technology and expert medical staff in Montevideo.", url: "https://clinicatitanium.com", siteName: "Clínica Titanium", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Lumière Skincare", description: "Luxury skincare with natural ingredients for radiant skin."
|
||||
card: "summary_large_image", title: "Clínica Titanium", description: "Premium medical aesthetic clinic with expert dermatologists."
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -40,7 +39,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1415,4 +1414,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user