Skip to content

Commit

Permalink
agrega los metas
Browse files Browse the repository at this point in the history
  • Loading branch information
Lostovayne committed Oct 9, 2024
1 parent 43c2bbe commit 050eedb
Showing 1 changed file with 65 additions and 11 deletions.
76 changes: 65 additions & 11 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,79 @@ import { Provider } from "@/components";

export const metadata: Metadata = {
title: {
template: "%s - Tesla | Shop",
default: "Tesla Shop",
template: "%s - Tesla Shop | Ropa y Accesorios Oficiales",
default: "Tesla Shop | Ropa y Accesorios Oficiales de Tesla",
},
description:
"Descubre la colección oficial de ropa y accesorios de Tesla. Moda sostenible y de alta calidad inspirada en la innovación y el diseño de Tesla.",
keywords: ["Tesla", "ropa", "accesorios", "moda sostenible", "innovación", "diseño", "tienda oficial"],
authors: [{ name: "Tesla, Inc." }],
creator: "Tesla, Inc.",
publisher: "Tesla Shop",
formatDetection: {
email: false,
address: false,
telephone: false,
},
openGraph: {
title: "Tesla Shop | Ropa y Accesorios Oficiales",
description:
"Explora la colección exclusiva de ropa y accesorios de Tesla. Estilo y tecnología unidos en cada prenda.",
url: "https://shop.tesla.com",
siteName: "Tesla Shop",
images: [
{
url: "https://tu-dominio.com/og-image.jpg", // Reemplaza con la URL real de tu imagen
width: 1200,
height: 630,
alt: "Tesla Shop Colección",
},
],
locale: "es_ES",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Tesla Shop | Ropa y Accesorios Oficiales",
description:
"Viste el futuro con la colección oficial de Tesla. Moda que combina estilo y sostenibilidad.",
images: ["https://tu-dominio.com/twitter-image.jpg"], // Reemplaza con la URL real de tu imagen
creator: "@TeslaShop",
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
"max-video-preview": -1,
"max-image-preview": "large",
"max-snippet": -1,
},
},
viewport: {
width: "device-width",
initialScale: 1,
maximumScale: 1,
},
verification: {
google: "tu-codigo-de-verificacion-de-google",
yandex: "tu-codigo-de-verificacion-de-yandex",
yahoo: "tu-codigo-de-verificacion-de-yahoo",
other: {
me: ["tu-email@ejemplo.com", "https://tu-sitio-personal.com"],
},
},
description: "Tienda de ropa online",
};

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="es" className="hydrated" suppressHydrationWarning={true}>
<html lang='es' className='hydrated' suppressHydrationWarning={true}>
<body
className={cn(
"bg-white bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] [background-size:16px_16px]",
inter.className
)}
>
)}>
<Provider>{children}</Provider>
</body>
</html>
Expand Down

0 comments on commit 050eedb

Please sign in to comment.