diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..ecc447b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } 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 { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Vestier Animal - Ropa Premium Personalizada para Mascotas | Bogotá", + description: "Ropa diseñada a medida y servicios spa premium para mascotas en Bogotá. Calidad excepcional, diseño exclusivo. Contacta hoy.", + keywords: "ropa para mascotas, ropa personalizada perros, accesorios gatos, spa mascotas Bogotá, ropa premium animales", + metadataBase: new URL("https://vestieranimal.com"), + alternates: { + canonical: "https://vestieranimal.com", + }, + openGraph: { + title: "Vestier Animal - Ropa Personalizada para Mascotas Premium", + description: "Diseño exclusivo y servicios spa para tu mascota. Ropa a medida en Bogotá.", + url: "https://vestieranimal.com", + siteName: "Vestier Animal", + images: [ + { + url: "http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-16030.jpg", + alt: "Colección premium Vestier Animal", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Vestier Animal - Ropa Premium para Mascotas", + description: "Ropa personalizada y servicios spa de lujo para perros y gatos.", + images: ["http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-16030.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -32,7 +65,9 @@ export default function RootLayout({ return ( - + {children}