29 lines
746 B
TypeScript
29 lines
746 B
TypeScript
import type { Metadata } from 'next'
|
|
import Home from '../page'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'GreenLens - Plant Identifier & Care Planner',
|
|
description:
|
|
'Scan plants by photo, understand what they need, and keep care, reminders, and your collection in one app.',
|
|
alternates: {
|
|
canonical: '/en',
|
|
languages: {
|
|
de: '/',
|
|
en: '/en',
|
|
es: '/es',
|
|
'x-default': '/',
|
|
},
|
|
},
|
|
openGraph: {
|
|
title: 'GreenLens - Plant Identifier & Care Planner',
|
|
description:
|
|
'Scan plants by photo, understand what they need, and keep care, reminders, and your collection in one app.',
|
|
type: 'website',
|
|
locale: 'en_US',
|
|
},
|
|
}
|
|
|
|
export default function EnglishHomePage() {
|
|
return <Home />
|
|
}
|