From 16e1a96e3cc644046722ead7a37f22cf5cacd308 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 13:11:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 552519e..dac37af 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,6 @@ import LegalSection from '@/components/legal/LegalSection'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import TeamCardSix from '@/components/sections/team/TeamCardSix'; -import Link from "next/link"; export default function LandingPage() { return ( @@ -59,7 +58,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" }]} + members={[{ id: "1", name: "Karim", role: "Founder", imageSrc: "", imageAlt: "Karim" }, { id: "2", name: "Nadine", role: "Manager", imageSrc: "", imageAlt: "Nadine" }]} /> @@ -83,7 +82,7 @@ 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" } }]} + plans={[{ id: "1", title: "Basic", period: "Monthly", price: "$99", features: ["Service 1"], button: { text: "Buy" } }, { id: "2", title: "Pro", period: "Monthly", price: "$199", features: ["Service 1", "Service 2"], button: { text: "Buy" } }]} /> @@ -91,6 +90,7 @@ export default function LandingPage() { -- 2.49.1