diff --git a/src/app/page.tsx b/src/app/page.tsx index 25a840c..c6b5ba2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -63,7 +63,7 @@ export default function LandingPage() { useInvertedBackground={false} title="Preisliste" description="Übersicht unserer Beratungsangebote." - plans={[{ name: "Basis", price: "0€", features: ["Beratung", "Dokumentation"] }, { name: "Premium", price: "49€", features: ["Vor-Ort", "Nachsorge"] }]} + plans={[{ title: "Basis", price: "0€", features: ["Beratung", "Dokumentation"] }, { title: "Premium", price: "49€", features: ["Vor-Ort", "Nachsorge"] }]} /> @@ -75,7 +75,7 @@ export default function LandingPage() { useInvertedBackground={false} title="Zubehör" description="Hilfsmittel für den Alltag." - products={[{ name: "Pflegebett", price: "1200€", description: "Komfortabel", imageSrc: "" }, { name: "Rollstuhl", price: "800€", description: "Leicht", imageSrc: "" }, { name: "Gehhilfe", price: "150€", description: "Stabil", imageSrc: "" }]} + products={[{ id: "1", name: "Pflegebett", price: "1200€", description: "Komfortabel", imageSrc: "" }, { id: "2", name: "Rollstuhl", price: "800€", description: "Leicht", imageSrc: "" }, { id: "3", name: "Gehhilfe", price: "150€", description: "Stabil", imageSrc: "" }]} /> @@ -86,16 +86,16 @@ export default function LandingPage() { useInvertedBackground={false} title="Aktuelles aus der Pflege" description="Tipps und Informationen." - blogs={[{ title: "Pflegegrad", date: "2024", excerpt: "Alles über Pflegegrade." }, { title: "Vorsorge", date: "2024", excerpt: "Vorsorgevollmacht." }]} + blogs={[{ id: "1", category: "Info", imageSrc: "", authorName: "Admin", authorAvatar: "", title: "Pflegegrad", date: "2024", excerpt: "Alles über Pflegegrade." }, { id: "2", category: "Recht", imageSrc: "", authorName: "Admin", authorAvatar: "", title: "Vorsorge", date: "2024", excerpt: "Vorsorgevollmacht." }]} />
{} }]} />