31 lines
843 B
TypeScript
31 lines
843 B
TypeScript
import type { Metadata } from 'next'
|
|
import Home from '../page'
|
|
import { siteConfig } from '@/lib/site'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'GreenLens - Identificar y cuidar plantas',
|
|
description:
|
|
'GreenLens en español: identifica plantas por foto, organiza cuidados, recibe recordatorios y diagnostica síntomas comunes.',
|
|
alternates: {
|
|
canonical: '/es',
|
|
languages: {
|
|
de: '/',
|
|
en: '/en',
|
|
es: '/es',
|
|
'x-default': '/',
|
|
},
|
|
},
|
|
openGraph: {
|
|
title: 'GreenLens - Identificar y cuidar plantas',
|
|
description:
|
|
'Identifica plantas por foto, organiza cuidados, recibe recordatorios y diagnostica síntomas comunes con GreenLens.',
|
|
url: `${siteConfig.domain}/es`,
|
|
type: 'website',
|
|
locale: 'es_ES',
|
|
},
|
|
}
|
|
|
|
export default function SpanishHomePage() {
|
|
return <Home />
|
|
}
|