TTikotok V4

This commit is contained in:
2026-07-10 11:29:04 +02:00
parent 1a9548cf25
commit 5c48def4e1
60 changed files with 6097 additions and 1319 deletions

View File

@@ -0,0 +1,28 @@
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 />
}