'use client' import Link from 'next/link' import { posthog } from '@/lib/posthog' const apps = [ { name: 'Snakkimo', tagline: 'Eine Kachel. Eine Lektion. Eine Sprache.', desc: 'Sprachen lernen, das sich anfühlt wie durch einen schönen Feed scrollen. Kleine Lektionen, großer Effekt — ganz ohne Druck.', href: '/apps/snakkimo', accent: '#7BA7BC', iconRadius: '20px 20px 20px 6px', badge: 'Sprachen lernen für Erwachsene', }, { name: 'Fittimo', tagline: 'Eine Übung. Jederzeit. Überall.', desc: 'Sanfte Bewegung und Atemübungen für Körper und Geist im Einklang. Kleine Übungen, großer Effekt.', href: '/apps/fittimo', accent: '#7DAF8A', iconRadius: '20px 6px 20px 20px', badge: 'Bewegung im Alltag', }, { name: 'Rezeptimo', tagline: 'Ein Rezept. Einfach. Genussvoll.', desc: 'Saisonale Rezepte zum langsamen Kochen — ehrlich, einfach, nährend. Ganz ohne Stress.', href: '/apps/rezeptimo', accent: '#C4896A', iconRadius: '6px 20px 20px 20px', badge: 'Kochen mit Freude', }, ] export default function AppsPage() { return (
Unsere Apps

Achtsamkeit in der Tasche

Drei sanfte Begleiter für einen langsameren, bewussteren Alltag.

{apps.map((app, i) => ( posthog.capture('app_card_clicked', { app_name: app.name })} style={{ textDecoration: 'none', display: 'grid', gridTemplateColumns: i % 2 === 0 ? '1fr 2fr' : '2fr 1fr', gap: 48, alignItems: 'center', background: '#F5F0E8', borderRadius: 40, padding: '56px 64px', color: 'inherit', }} > {i % 2 !== 0 && (
{app.badge}

{app.tagline}

{app.desc}

Mehr erfahren →
)}
{app.name[0]}
{i % 2 === 0 && (
{app.badge}

{app.tagline}

{app.desc}

Mehr erfahren →
)} ))}
) }