diff --git a/src/app/page.tsx b/src/app/page.tsx index 3232f95..552519e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -59,6 +59,7 @@ export default function LandingPage() { useInvertedBackground={false} title="Meet Our Team" description="The experts driving our excellence." + members={[{ name: "Karim", role: "Founder", imageSrc: "", imageAlt: "Karim" }, { name: "Nadine", role: "Manager", imageSrc: "", imageAlt: "Nadine" }]} /> @@ -71,6 +72,7 @@ export default function LandingPage() { title="Frequently Asked Questions" description="Find answers to common inquiries." faqsAnimation="blur-reveal" + faqs={[{ id: "1", title: "Question", content: "Answer" }, { id: "2", title: "Question", content: "Answer" }]} /> @@ -81,12 +83,13 @@ export default function LandingPage() { useInvertedBackground={false} title="Service Packages" description="Choose the maintenance plan that fits you." + plans={[{ id: "1", title: "Basic", price: "$99", features: ["Service 1"], button: { text: "Buy" } }, { id: "2", title: "Pro", price: "$199", features: ["Service 1", "Service 2"], button: { text: "Buy" } }]} />